diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-08-18 09:20:02 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-08-18 09:20:02 +0000 |
commit | bd5a60201e0fc253d55cef919a6d69de6efcbd1a (patch) | |
tree | 0486ceb8fe35878801d283c80da1e360e8e1bb29 /libavcodec | |
parent | f8188626331ba132abc7b11aadb15eaac09ac7aa (diff) | |
download | ffmpeg-bd5a60201e0fc253d55cef919a6d69de6efcbd1a.tar.gz |
use codec_tag for encoding too
Originally committed as revision 2125 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-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 e0f87c7c58..4872054eb1 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -611,7 +611,7 @@ typedef struct AVCodecContext { /** * fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A'). * this is used to workaround some encoder bugs - * - encoding: unused + * - encoding: set by user, if not then the default based on codec_id will be used * - decoding: set by user, will be converted to upper case by lavc during init */ unsigned int codec_tag; |