diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-11-07 09:46:57 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-11-07 09:46:57 +0000 |
commit | 176629551635fc74e0cba50e0fbe6ebb9c6a2565 (patch) | |
tree | bceca358ef18480f4c8a97a1e3d8706bca74a120 /libavcodec/mpegvideo.h | |
parent | 718eeb6a2128554b0558ffd0db2fa3b10057baca (diff) | |
download | ffmpeg-176629551635fc74e0cba50e0fbe6ebb9c6a2565.tar.gz |
add codec_tag and codec_stream_tag to MpegEncContext to not alter avctx values
Originally committed as revision 6930 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index edeef117f8..fe53311116 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -225,6 +225,8 @@ typedef struct MpegEncContext { int chroma_elim_threshold; int strict_std_compliance; ///< strictly follow the std (MPEG4, ...) int workaround_bugs; ///< workaround bugs in encoders which cannot be detected automatically + int codec_tag; ///< internal codec_tag upper case converted from avctx codec_tag + int stream_codec_tag; ///< internal stream_codec_tag upper case converted from avctx stream_codec_tag /* the following fields are managed internally by the encoder */ /** bit output */ |