Skip to content

Commit

Permalink
Merge pull request #1 from SBCV-apegram/patch-1
Browse files Browse the repository at this point in the history
Corrected pointer issue
SBCV-apegram authored Oct 10, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents b7b46e8 + 6407cd1 commit fb4004e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ndi_output.cpp
Original file line number Diff line number Diff line change
@@ -34,8 +34,8 @@ void NdiOutput::outputBuffer(void *mem, size_t size, int64_t timestamp_us, uint3
{
this->NDI_video_frame.p_data = (uint8_t*)mem;
NDIlib_send_send_video_v2(this->pNDI_send, &this->NDI_video_frame);
NDIlib_tally_t* NDI_tally;
NDIlib_send_get_tally(this->pNDI_send, NDI_tally, 0);
NDIlib_tally_t NDI_tally;
NDIlib_send_get_tally(this->pNDI_send, &NDI_tally, 0);

char pixelStatus;
std::ofstream neopixel;
@@ -70,4 +70,4 @@ bool NdiOutput::isProgram()
bool NdiOutput::isPreview()
{
return this->preview;
}
}

0 comments on commit fb4004e

Please sign in to comment.