1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

avcodec: Improve comment for thread_safe_callbacks to avoid misinterpretation.

Signed-off-by: Diego Biurrun <diego@biurrun.de>
This commit is contained in:
Robert Nagy 2012-04-14 20:31:45 +02:00 committed by Diego Biurrun
parent be6009d32c
commit ad0278661b

View File

@ -2626,7 +2626,7 @@ typedef struct AVCodecContext {
/** /**
* Set by the client if its custom get_buffer() callback can be called * 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. * draw_horiz_band() will be called from other threads regardless of this setting.
* Ignored if the default get_buffer() is used. * Ignored if the default get_buffer() is used.
* - encoding: Set by user. * - encoding: Set by user.