From 43bc5cf9f457c3a7caabc3781a71dee8dd4086ee Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 19 May 2012 22:15:21 +0200 Subject: [PATCH] mpegaudiodec: skip initial zeros. Signed-off-by: Michael Niedermayer --- libavcodec/mpegaudiodec.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c index 6a2b0fdd53..8635d4781a 100644 --- a/libavcodec/mpegaudiodec.c +++ b/libavcodec/mpegaudiodec.c @@ -1637,6 +1637,9 @@ static int decode_frame(AVCodecContext * avctx, void *data, int *got_frame_ptr, uint32_t header; int out_size; + while(buf_size && !*buf) + buf++; + if (buf_size < HEADER_SIZE) return AVERROR_INVALIDDATA;