summaryrefslogtreecommitdiff
path: root/libavcodec/mpegaudiodec.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-04-26 14:10:31 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-04-26 14:10:31 +0000
commitf0f53c83baf5adfd98404bcd689dec6c5a9789f7 (patch)
tree2f93acc68422262d846ace68411ccc6abeb53267 /libavcodec/mpegaudiodec.c
parent60dfa0b8d4a7b82498cbeee2eb6042b9f48d38d3 (diff)
fix 1 frame config decoding
Originally committed as revision 12991 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegaudiodec.c')
-rw-r--r--libavcodec/mpegaudiodec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c
index f0ace1acc9..5e9ec6a626 100644
--- a/libavcodec/mpegaudiodec.c
+++ b/libavcodec/mpegaudiodec.c
@@ -2595,7 +2595,7 @@ static int decode_frame_mp3on4(AVCodecContext * avctx,
}
ff_mpegaudio_decode_header(m, header);
- out_size += mp_decode_frame(m, decoded_buf, buf, fsize);
+ out_size += mp_decode_frame(m, outptr, buf, fsize);
buf += fsize;
len -= fsize;