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/vdpau_vc1.c | |
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/vdpau_vc1.c')
-rw-r--r-- | libavcodec/vdpau_vc1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vdpau_vc1.c b/libavcodec/vdpau_vc1.c index c21a8610d5..b40135283d 100644 --- a/libavcodec/vdpau_vc1.c +++ b/libavcodec/vdpau_vc1.c @@ -83,7 +83,7 @@ static int vdpau_vc1_start_frame(AVCodecContext *avctx, info->range_mapuv = v->range_mapuv; /* Specific to simple/main profile only */ info->multires = v->multires; - info->syncmarker = v->s.resync_marker; + info->syncmarker = v->resync_marker; info->rangered = v->rangered | (v->rangeredfrm << 1); info->maxbframes = v->s.max_b_frames; info->deblockEnable = v->postprocflag & 1; |