[FFmpeg-cvslog] r18736 - trunk/libavcodec/mpegaudiodec.c
diego
subversion
Mon May 4 16:23:49 CEST 2009
Author: diego
Date: Mon May 4 16:23:48 2009
New Revision: 18736
Log:
Do not scan for MP3 header after the given buffer and return skipped
bytes along with consumed bytes on successful decoding.
patch by Zdenek Kabelac, zdenek.kabelac gmail com
Modified:
trunk/libavcodec/mpegaudiodec.c
Modified: trunk/libavcodec/mpegaudiodec.c
==============================================================================
--- trunk/libavcodec/mpegaudiodec.c Mon May 4 13:37:25 2009 (r18735)
+++ trunk/libavcodec/mpegaudiodec.c Mon May 4 16:23:48 2009 (r18736)
@@ -2263,6 +2263,7 @@ static int decode_frame(AVCodecContext *
MPADecodeContext *s = avctx->priv_data;
uint32_t header;
int out_size;
+ int skipped = 0;
OUT_INT *out_samples = data;
retry:
@@ -2272,7 +2273,8 @@ retry:
header = AV_RB32(buf);
if(ff_mpa_check_header(header) < 0){
buf++;
-// buf_size--;
+ buf_size--;
+ skipped++;
av_log(avctx, AV_LOG_ERROR, "Header missing skipping one byte.\n");
goto retry;
}
@@ -2303,7 +2305,7 @@ retry:
}else
av_log(avctx, AV_LOG_DEBUG, "Error while decoding MPEG audio frame.\n"); //FIXME return -1 / but also return the number of bytes consumed
s->frame_size = 0;
- return buf_size;
+ return buf_size + skipped;
}
static void flush(AVCodecContext *avctx){
More information about the ffmpeg-cvslog
mailing list