diff options
author | Martin Storsjö <martin@martin.st> | 2009-05-20 08:57:32 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2009-05-20 08:57:32 +0000 |
commit | a2ce9a9914fa364905990eadde9ba7c65db82c01 (patch) | |
tree | c41b5bc5c677b2c87b16dc09aaafb2eb921efec8 | |
parent | 373177949fa729cd5e435c535fc5aec955191b5b (diff) | |
download | ffmpeg-a2ce9a9914fa364905990eadde9ba7c65db82c01.tar.gz |
Use IF1 frame sizes in AMR-WB.
Patch by Martin Storsjö: martin (remove that) at martin (oh and this too) st
Originally committed as revision 18880 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/libamr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libamr.c b/libavcodec/libamr.c index 52c211835a..2f63f10163 100644 --- a/libavcodec/libamr.c +++ b/libavcodec/libamr.c @@ -412,7 +412,7 @@ static int amr_wb_decode_frame(AVCodecContext *avctx, void *data, const uint8_t *amrData = buf; int mode; int packet_size; - static const uint8_t block_size[16] = {18, 23, 33, 37, 41, 47, 51, 59, 61, 6, 6, 0, 0, 0, 1, 1}; + static const uint8_t block_size[16] = {18, 24, 33, 37, 41, 47, 51, 59, 61, 6, 6, 0, 0, 0, 1, 1}; if (!buf_size) /* nothing to do */ |