diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-01-12 01:51:06 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-01-12 03:33:16 +0100 |
commit | e2db9a736fd9506d194854ee448c7830d486b125 (patch) | |
tree | 340c1f4d46ccd6139b509d32b33849bc230754a3 /libavcodec/wma.h | |
parent | a8bc901033e85963f909660629e14190cc538ffe (diff) | |
download | ffmpeg-e2db9a736fd9506d194854ee448c7830d486b125.tar.gz |
avcodec/wmadec: fix 0 frame bit_reservoir
Fixes Ticket968
partly fixes Ticket691
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/wma.h')
-rw-r--r-- | libavcodec/wma.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wma.h b/libavcodec/wma.h index a232b8a4c6..8d337df1dd 100644 --- a/libavcodec/wma.h +++ b/libavcodec/wma.h @@ -42,7 +42,7 @@ #define NB_LSP_COEFS 10 /* XXX: is it a suitable value ? */ -#define MAX_CODED_SUPERFRAME_SIZE 16384 +#define MAX_CODED_SUPERFRAME_SIZE 32768 #define MAX_CHANNELS 2 |