mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-18 21:38:29 -04:00
decklink: Schedule video frames for playback
DisplayVideoFrameSync is unusable at 4K, over 20 milliseconds per call. ScheduleVideoFrame is probably what we should have been using all along.
This commit is contained in:
@@ -82,9 +82,9 @@ obs_output_t *DeckLinkOutput::GetOutput(void) const
|
||||
return output;
|
||||
}
|
||||
|
||||
void DeckLinkOutput::DisplayVideoFrame(video_data *frame)
|
||||
void DeckLinkOutput::UpdateVideoFrame(video_data *frame)
|
||||
{
|
||||
instance->DisplayVideoFrame(frame);
|
||||
instance->UpdateVideoFrame(frame);
|
||||
}
|
||||
|
||||
void DeckLinkOutput::WriteAudio(audio_data *frames)
|
||||
|
||||
Reference in New Issue
Block a user