diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-11-26 12:18:44 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-11-29 14:19:47 +0100 |
commit | c2f7417eeb9cc31f75e71f7be2780f90f1628d7e (patch) | |
tree | 79020d21ae2503f4eebf1c8a0a3ac9ef95604cd6 /libavcodec/vc1.h | |
parent | a5a71992cae34b321ceb8374f44ce17a945a3881 (diff) | |
download | ffmpeg-c2f7417eeb9cc31f75e71f7be2780f90f1628d7e.tar.gz |
vc1: move MpegEncContext.resync_marker into VC1Context.
The field still remains in MpegEncContext because it is used by the
mpeg4 decoder.
Diffstat (limited to 'libavcodec/vc1.h')
-rw-r--r-- | libavcodec/vc1.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/vc1.h b/libavcodec/vc1.h index d70e33700e..9db8eddac2 100644 --- a/libavcodec/vc1.h +++ b/libavcodec/vc1.h @@ -401,6 +401,7 @@ typedef struct VC1Context{ int end_mb_x; ///< Horizontal macroblock limit (used only by mss2) int parse_only; ///< Context is used within parser + int resync_marker; ///< could this stream contain resync markers } VC1Context; /** Find VC-1 marker in buffer |