[FFmpeg-devel] [PATCH 3/5] avcodec/mpeg4videode: Eliminate out of loop VOP startcode reading for studio profile
Michael Niedermayer
michael at niedermayer.cc
Sun Apr 29 22:19:16 EEST 2018
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
---
libavcodec/mpeg4videodec.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mpeg4videodec.c
index 9ee2f37c69..9318d7bd4e 100644
--- a/libavcodec/mpeg4videodec.c
+++ b/libavcodec/mpeg4videodec.c
@@ -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;
--
2.17.0
More information about the ffmpeg-devel
mailing list