From ad0278661b2625e56e09d1ee96f404fc575a9edf Mon Sep 17 00:00:00 2001 From: Robert Nagy Date: Sat, 14 Apr 2012 20:31:45 +0200 Subject: [PATCH] avcodec: Improve comment for thread_safe_callbacks to avoid misinterpretation. Signed-off-by: Diego Biurrun --- libavcodec/avcodec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 8ae8992127..8020582b6e 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2626,7 +2626,7 @@ typedef struct AVCodecContext { /** * Set by the client if its custom get_buffer() callback can be called - * from another thread, which allows faster multithreaded decoding. + * synchronously from another thread, which allows faster multithreaded decoding. * draw_horiz_band() will be called from other threads regardless of this setting. * Ignored if the default get_buffer() is used. * - encoding: Set by user.