aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-03-03 19:29:00 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-03-03 19:29:00 +0000
commit399cec2f3e7e5d817ce20d3f83383f25e23e02d4 (patch)
tree069093087973b7dd6fb695367c650452b564f39e /libavcodec/avcodec.h
parent4346539522fbe34a4d46d3c6366b29181f31dc7a (diff)
downloadffmpeg-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.h4
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
*/