diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-04-26 14:10:31 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-04-26 14:10:31 +0000 |
commit | f0f53c83baf5adfd98404bcd689dec6c5a9789f7 (patch) | |
tree | 2f93acc68422262d846ace68411ccc6abeb53267 /libavcodec | |
parent | 60dfa0b8d4a7b82498cbeee2eb6042b9f48d38d3 (diff) | |
download | ffmpeg-f0f53c83baf5adfd98404bcd689dec6c5a9789f7.tar.gz |
fix 1 frame config decoding
Originally committed as revision 12991 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/mpegaudiodec.c | 2 |
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; |