summaryrefslogtreecommitdiff
path: root/libavcodec/vc1.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-10-13 17:09:13 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-10-13 17:09:13 +0200
commit2a56e65c3b3b53a3a51f290faa33ce0a852cd2a1 (patch)
treeefde2c2d9143d3c7cf103384b19e9a386bf05404 /libavcodec/vc1.c
parentd0707677fa50f7d75a945e234287a4661962c851 (diff)
parent5d2be71b9ecf2a88752666a2c4039f4d98419d35 (diff)
Merge remote-tracking branch 'qatar/master'
* qatar/master: vc1: Use codec ID from AVCodecContext while parsing frame header avplay: support mid-stream sample rate changes Conflicts: ffplay.c libavcodec/vc1.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r--libavcodec/vc1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c
index ae07d177cb..c24951b2d8 100644
--- a/libavcodec/vc1.c
+++ b/libavcodec/vc1.c
@@ -585,7 +585,7 @@ int ff_vc1_parse_frame_header(VC1Context *v, GetBitContext* gb)
v->interpfrm = get_bits1(gb);
if (!v->s.avctx->codec)
return -1;
- if (v->s.avctx->codec->id == AV_CODEC_ID_MSS2)
+ if (v->s.avctx->codec_id == AV_CODEC_ID_MSS2)
v->respic =
v->rangered =
v->multires = get_bits(gb, 2) == 1;