diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-11-26 14:30:13 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-11-29 14:19:48 +0100 |
commit | 43af264de8606668c6b2fa7f96c946bdc3dbe072 (patch) | |
tree | 98c92cda3eaa8843e3e86d1be8514c1b5532ff09 /libavcodec/mpegvideo.h | |
parent | e2ceb17642f374a7df8f1f5d3d2b2446525bc7fb (diff) | |
download | ffmpeg-43af264de8606668c6b2fa7f96c946bdc3dbe072.tar.gz |
mpeg4videodec: move mpeg4-specific bug workaround variables from MpegEncContext to Mpeg4DecContext
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index e8a9ec2dcd..d206905700 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -614,18 +614,11 @@ typedef struct MpegEncContext { int cplx_estimation_trash_b; /* divx specific, used to workaround (many) bugs in divx5 */ - int divx_version; - int divx_build; int divx_packed; uint8_t *bitstream_buffer; //Divx 5.01 puts several frames in a single one, this is used to reorder them int bitstream_buffer_size; unsigned int allocated_bitstream_buffer_size; - int xvid_build; - - /* lavc specific stuff, used to workaround bugs in libavcodec */ - int lavc_build; - /* RV10 specific */ int rv10_version; ///< RV10 version: 0 or 3 int rv10_first_dc_coded[3]; |