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 | b1aacd56685cd131f517e0551834a0bbd3f5f809 (patch) | |
tree | 85b3398809ccfed42f4f5b0ac2f6ce476ff64ca7 /libavcodec/mpeg4video.h | |
parent | 038890740014dc33d2e2f04da7cf0a9da821264e (diff) | |
download | ffmpeg-b1aacd56685cd131f517e0551834a0bbd3f5f809.tar.gz |
mpeg4videodec: move t_frame from MpegEncContext to Mpeg4DecContext
Diffstat (limited to 'libavcodec/mpeg4video.h')
-rw-r--r-- | libavcodec/mpeg4video.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/mpeg4video.h b/libavcodec/mpeg4video.h index fdb16be07d..60857cce11 100644 --- a/libavcodec/mpeg4video.h +++ b/libavcodec/mpeg4video.h @@ -70,6 +70,8 @@ typedef struct Mpeg4DecContext { int rvlc; ///< could this stream contain resync markers int resync_marker; + ///< time distance of first I -> B, used for interlaced b frames + int t_frame; /* bug workarounds */ int divx_version; |