fixed block size selection
authorFabrice Bellard <fabrice@bellard.org>
Mon, 28 Oct 2002 01:42:05 +0000 (01:42 +0000)
committerFabrice Bellard <fabrice@bellard.org>
Mon, 28 Oct 2002 01:42:05 +0000 (01:42 +0000)
Originally committed as revision 1093 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/wmadec.c

index da8707f..0eef66c 100644 (file)
@@ -270,7 +270,7 @@ static int wma_decode_init(AVCodecContext * avctx)
     /* compute MDCT block size */
     if (s->sample_rate <= 16000) {
         s->frame_len_bits = 9;
-    } else if (s->sample_rate <= 32000) {
+    } else if (s->sample_rate <= 32000 && s->version == 1) {
         s->frame_len_bits = 10;
     } else {
         s->frame_len_bits = 11;