diff options
author | Sascha Sommer | 2009-10-03 10:01:23 +0000 |
---|---|---|
committer | Sascha Sommer | 2009-10-03 10:01:23 +0000 |
commit | aac4b0a47ed8a44c01b962ed391620dd84368f06 (patch) | |
tree | 4df89a01917d666d709d3fd9fc2069e850bd9830 /libavcodec/wmaprodec.c | |
parent | 037396d099a7fd9215ed99295fa2c9a669ae22b6 (diff) |
increase maximum compressed frame size
fixes playback of piece.wmv
Originally committed as revision 20155 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/wmaprodec.c')
-rw-r--r-- | libavcodec/wmaprodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmaprodec.c b/libavcodec/wmaprodec.c index 36fb08ac79..4d16c7f523 100644 --- a/libavcodec/wmaprodec.c +++ b/libavcodec/wmaprodec.c @@ -98,7 +98,7 @@ #define WMAPRO_MAX_CHANNELS 8 ///< max number of handled channels #define MAX_SUBFRAMES 32 ///< max number of subframes per channel #define MAX_BANDS 29 ///< max number of scale factor bands -#define MAX_FRAMESIZE 16384 ///< maximum compressed frame size +#define MAX_FRAMESIZE 32768 ///< maximum compressed frame size #define WMAPRO_BLOCK_MAX_BITS 12 ///< log2 of max block size #define WMAPRO_BLOCK_MAX_SIZE (1 << WMAPRO_BLOCK_MAX_BITS) ///< maximum block size |