summaryrefslogtreecommitdiff
path: root/libavcodec/ac3dec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-07-15 23:38:51 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-07-15 23:42:58 +0200
commit0b95f01140d0debe5ff6bf54d7490ade7c00421b (patch)
tree06f3fc1f4b251778e1a54fff39ae7e049c2e7e79 /libavcodec/ac3dec.c
parent95126728a5bda8ee68444f0873ac76be8f11abf1 (diff)
parent8f24c12be7a3b3ea105e67bba9a867fe210a2333 (diff)
Merge commit '8f24c12be7a3b3ea105e67bba9a867fe210a2333'
* commit '8f24c12be7a3b3ea105e67bba9a867fe210a2333': ac3dec: Don't consume more data than the actual input packet size Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ac3dec.c')
-rw-r--r--libavcodec/ac3dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c
index bfc81db26f..4d38ca1e22 100644
--- a/libavcodec/ac3dec.c
+++ b/libavcodec/ac3dec.c
@@ -1308,7 +1308,7 @@ static int ac3_decode_frame(AVCodecContext * avctx, void *data,
av_log(avctx, AV_LOG_ERROR, "unsupported frame type : "
"skipping frame\n");
*got_frame_ptr = 0;
- return s->frame_size;
+ return buf_size;
} else {
av_log(avctx, AV_LOG_ERROR, "invalid frame type\n");
}