diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-11-26 14:34:52 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-11-29 14:19:48 +0100 |
commit | 038890740014dc33d2e2f04da7cf0a9da821264e (patch) | |
tree | bee9484bac0ccfe84ad1e2fc7e1f43394cff611e /libavcodec/mpeg4video.h | |
parent | 43af264de8606668c6b2fa7f96c946bdc3dbe072 (diff) | |
download | ffmpeg-038890740014dc33d2e2f04da7cf0a9da821264e.tar.gz |
mpeg4videodec: move cplx_estimation_* fields from MpegEncContext to Mpeg4DecContext
Diffstat (limited to 'libavcodec/mpeg4video.h')
-rw-r--r-- | libavcodec/mpeg4video.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/mpeg4video.h b/libavcodec/mpeg4video.h index d119ccef80..fdb16be07d 100644 --- a/libavcodec/mpeg4video.h +++ b/libavcodec/mpeg4video.h @@ -76,6 +76,10 @@ typedef struct Mpeg4DecContext { int divx_build; int xvid_build; int lavc_build; + + int cplx_estimation_trash_i; + int cplx_estimation_trash_p; + int cplx_estimation_trash_b; } Mpeg4DecContext; /* dc encoding for mpeg4 */ |