From 40cea1f677d35c6f7fe8c86d1d2bef1a313da9f5 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Sat, 26 Jun 2021 14:34:07 +0200 Subject: [PATCH] Remove obsolete comment Commit 2a94a2b119a9efd2cd06ded03280872c81abe6b4 removed video_buffer callbacks, the comment is now meaningless. --- app/src/video_buffer.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/app/src/video_buffer.h b/app/src/video_buffer.h index b9478f4c..b957bf1e 100644 --- a/app/src/video_buffer.h +++ b/app/src/video_buffer.h @@ -18,12 +18,6 @@ typedef struct AVFrame AVFrame; * If a pending frame has not been consumed when the producer pushes a new * frame, then it is lost. The intent is to always provide access to the very * last frame to minimize latency. - * - * The producer and the consumer typically do not live in the same thread. - * That's the reason why the callback on_frame_available() does not provide the - * frame as parameter: the consumer might post an event to its own thread to - * retrieve the pending frame from there, and that frame may have changed since - * the callback if producer pushed a new one in between. */ struct video_buffer {