X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=bmusb.cpp;h=387e042900ea82bc10d3f7775e1915c7f8113c1e;hb=e6f8f805a7224fedf90ba90ef5a3ca83d21b6c6b;hp=8b40f4997306cef972b0fd03b46c402bc6c30508;hpb=1353b0ec496ff464be4990ee1d671e4fa376b874;p=bmusb diff --git a/bmusb.cpp b/bmusb.cpp index 8b40f49..387e042 100644 --- a/bmusb.cpp +++ b/bmusb.cpp @@ -158,12 +158,12 @@ void BMUSBCapture::dequeue_thread_func() uint16_t video_timecode = pending_video_frames.front().timecode; uint16_t audio_timecode = pending_audio_frames.front().timecode; - if (video_timecode < audio_timecode) { + if (uint16_less_than_with_wraparound(video_timecode, audio_timecode)) { printf("Video block 0x%04x without corresponding audio block, dropping.\n", video_timecode); video_frame_allocator->release_frame(pending_video_frames.front().frame); pending_video_frames.pop_front(); - } else if (audio_timecode < video_timecode) { + } else if (uint16_less_than_with_wraparound(audio_timecode, video_timecode)) { printf("Audio block 0x%04x without corresponding video block, sending blank frame.\n", audio_timecode); QueuedFrame audio_frame = pending_audio_frames.front();