diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-08-27 08:26:14 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-08-31 13:19:14 +0200 |
commit | 297d9cb3dc6850b83ba4e95789143833cecdfd87 (patch) | |
tree | 102aa9f94dd1fe2e4e44d044fa6fd3a4c44417a0 /libavcodec/mpegvideo.h | |
parent | d2f119a1f2d2d72b0001fcdf2cc051b022bf6528 (diff) | |
download | ffmpeg-297d9cb3dc6850b83ba4e95789143833cecdfd87.tar.gz |
mpeg12enc: add intra_vlc private option.
Deprecate CODEC_FLAG2_INTRA_VLC.
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 47c8e8a38d..0790b075f0 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -199,6 +199,7 @@ typedef struct MotionEstContext{ * MpegEncContext. */ typedef struct MpegEncContext { + AVClass *class; struct AVCodecContext *avctx; /* the following parameters must be initialized before encoding */ int width, height;///< picture size. must be a multiple of 16 |