mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
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>
This commit is contained in:
commit
2a56e65c3b
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user