[FFmpeg-cvslog] atrac3: return error if packet is too small

Justin Ruggles git at videolan.org
Sun Oct 30 02:04:15 CEST 2011


ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Fri Oct 14 17:10:33 2011 -0400| [1fead73d7b3a71a662a986559d665e0dd0916688] | committer: Justin Ruggles

atrac3: return error if packet is too small

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1fead73d7b3a71a662a986559d665e0dd0916688
---

 libavcodec/atrac3.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/libavcodec/atrac3.c b/libavcodec/atrac3.c
index 6828ff0..37245ef 100644
--- a/libavcodec/atrac3.c
+++ b/libavcodec/atrac3.c
@@ -834,8 +834,7 @@ static int atrac3_decode_frame(AVCodecContext *avctx,
     if (buf_size < avctx->block_align) {
         av_log(avctx, AV_LOG_ERROR,
                "Frame too small (%d bytes). Truncated file?\n", buf_size);
-        *data_size = 0;
-        return buf_size;
+        return AVERROR_INVALIDDATA;
     }
 
     out_size = 1024 * q->channels * av_get_bytes_per_sample(avctx->sample_fmt);



More information about the ffmpeg-cvslog mailing list