diff options
author | Robert Nagy <ronag89@gmail.com> | 2012-04-14 20:31:45 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-05-06 18:00:29 +0200 |
commit | ad0278661b2625e56e09d1ee96f404fc575a9edf (patch) | |
tree | 81d0b402a9899ca4dfaffb9be16876dea2c34665 /libavcodec/avcodec.h | |
parent | be6009d32c1398b331a85a27984c287ba178b7a7 (diff) | |
download | ffmpeg-ad0278661b2625e56e09d1ee96f404fc575a9edf.tar.gz |
avcodec: Improve comment for thread_safe_callbacks to avoid misinterpretation.
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
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. |