diff options
author | Mark Weaver | 2005-06-28 14:56:16 +0000 |
---|---|---|
committer | Michael Niedermayer | 2005-06-28 14:56:16 +0000 |
commit | ff547a52d28925ad4ee773a91e2ecb4b61212fdc (patch) | |
tree | d65d293139298e71a93efb80c5e0c4419a0d303b /libavcodec | |
parent | 33785a3a9d8da5ca03ed94379fa2a2625dc91afe (diff) |
WMA MAX_CODED_SUPERFRAME_SIZE too small patch by (Mark Weaver: mark-clist, npsl co uk)
Originally committed as revision 4407 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/wmadec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmadec.c b/libavcodec/wmadec.c index e0788375fa..9ea685af1b 100644 --- a/libavcodec/wmadec.c +++ b/libavcodec/wmadec.c @@ -48,7 +48,7 @@ #define NB_LSP_COEFS 10 /* XXX: is it a suitable value ? */ -#define MAX_CODED_SUPERFRAME_SIZE 4096 +#define MAX_CODED_SUPERFRAME_SIZE 16384 #define MAX_CHANNELS 2 |