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/mpeg4video.h | |
parent | e2ceb17642f374a7df8f1f5d3d2b2446525bc7fb (diff) | |
download | ffmpeg-43af264de8606668c6b2fa7f96c946bdc3dbe072.tar.gz |
mpeg4videodec: move mpeg4-specific bug workaround variables from MpegEncContext to Mpeg4DecContext
Diffstat (limited to 'libavcodec/mpeg4video.h')
-rw-r--r-- | libavcodec/mpeg4video.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/mpeg4video.h b/libavcodec/mpeg4video.h index 046ef51275..d119ccef80 100644 --- a/libavcodec/mpeg4video.h +++ b/libavcodec/mpeg4video.h @@ -70,6 +70,12 @@ typedef struct Mpeg4DecContext { int rvlc; ///< could this stream contain resync markers int resync_marker; + + /* bug workarounds */ + int divx_version; + int divx_build; + int xvid_build; + int lavc_build; } Mpeg4DecContext; /* dc encoding for mpeg4 */ |