Commit 9f73ae31 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/mpeg4videode: Eliminate out of loop VOP startcode reading for studio profile

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent ab834b8f
......@@ -2931,9 +2931,6 @@ static int decode_studio_vop_header(Mpeg4DecContext *ctx, GetBitContext *gb)
if (get_bits_left(gb) <= 32)
return 0;
if (get_bits_long(gb, 32) != VOP_STARTCODE)
return AVERROR_INVALIDDATA;
s->decode_mb = mpeg4_decode_studio_mb;
decode_smpte_tc(ctx, gb);
......@@ -3183,7 +3180,6 @@ int ff_mpeg4_decode_picture_header(Mpeg4DecContext *ctx, GetBitContext *gb)
if (s->studio_profile) {
if ((ret = decode_studio_vol_header(ctx, gb)) < 0)
return ret;
break;
} else {
if ((ret = decode_vol_header(ctx, gb)) < 0)
return ret;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment