diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-03-03 19:29:00 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-03-03 19:29:00 +0000 |
commit | 399cec2f3e7e5d817ce20d3f83383f25e23e02d4 (patch) | |
tree | 069093087973b7dd6fb695367c650452b564f39e /libavcodec/avcodec.h | |
parent | 4346539522fbe34a4d46d3c6366b29181f31dc7a (diff) | |
download | ffmpeg-399cec2f3e7e5d817ce20d3f83383f25e23e02d4.tar.gz |
count > thread_count for execute()
Originally committed as revision 2842 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 22f0a697c9..5b38c09b3d 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -17,7 +17,7 @@ extern "C" { #define FFMPEG_VERSION_INT 0x000408 #define FFMPEG_VERSION "0.4.8" -#define LIBAVCODEC_BUILD 4706 +#define LIBAVCODEC_BUILD 4707 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT #define LIBAVCODEC_VERSION FFMPEG_VERSION @@ -1547,7 +1547,7 @@ typedef struct AVCodecContext { * the codec may call this to execute several independant things. it will return only after * finishing all tasks, the user may replace this with some multithreaded implementation, the * default implementation will execute the parts serially - * @param count the number of functions this will be identical to thread_count if possible + * @param count the number of things to execute * - encoding: set by lavc, user can override * - decoding: set by lavc, user can override */ |