mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/mpeg12dec: Check chroma_format
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
0d2a62d257
commit
1f86079376
|
@ -1384,6 +1384,7 @@ static int mpeg_decode_postinit(AVCodecContext *avctx)
|
||||||
case 1: avctx->chroma_sample_location = AVCHROMA_LOC_LEFT; break;
|
case 1: avctx->chroma_sample_location = AVCHROMA_LOC_LEFT; break;
|
||||||
case 2:
|
case 2:
|
||||||
case 3: avctx->chroma_sample_location = AVCHROMA_LOC_TOPLEFT; break;
|
case 3: avctx->chroma_sample_location = AVCHROMA_LOC_TOPLEFT; break;
|
||||||
|
default: av_assert0(0);
|
||||||
}
|
}
|
||||||
} // MPEG-2
|
} // MPEG-2
|
||||||
|
|
||||||
|
@ -1466,6 +1467,12 @@ static void mpeg_decode_sequence_extension(Mpeg1Context *s1)
|
||||||
s->avctx->level = get_bits(&s->gb, 4);
|
s->avctx->level = get_bits(&s->gb, 4);
|
||||||
s->progressive_sequence = get_bits1(&s->gb); /* progressive_sequence */
|
s->progressive_sequence = get_bits1(&s->gb); /* progressive_sequence */
|
||||||
s->chroma_format = get_bits(&s->gb, 2); /* chroma_format 1=420, 2=422, 3=444 */
|
s->chroma_format = get_bits(&s->gb, 2); /* chroma_format 1=420, 2=422, 3=444 */
|
||||||
|
|
||||||
|
if (!s->chroma_format) {
|
||||||
|
s->chroma_format = 1;
|
||||||
|
av_log(s->avctx, AV_LOG_WARNING, "Chroma format invalid\n");
|
||||||
|
}
|
||||||
|
|
||||||
horiz_size_ext = get_bits(&s->gb, 2);
|
horiz_size_ext = get_bits(&s->gb, 2);
|
||||||
vert_size_ext = get_bits(&s->gb, 2);
|
vert_size_ext = get_bits(&s->gb, 2);
|
||||||
s->width |= (horiz_size_ext << 12);
|
s->width |= (horiz_size_ext << 12);
|
||||||
|
|
Loading…
Reference in New Issue