]> git.sesse.net Git - vlc/commitdiff
10l: Fix typo
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 2 Sep 2009 20:28:26 +0000 (22:28 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 2 Sep 2009 20:28:26 +0000 (22:28 +0200)
modules/codec/avcodec/audio.c

index 687bd040d40f630f33a3254aad8f651cced5e4cd..77413fd4155759aeef7c6b5aacb5d7f168d7ea9a 100644 (file)
@@ -186,7 +186,7 @@ int InitAudioDec( decoder_t *p_dec, AVCodecContext *p_context,
         p_sys->i_output_max = 8 * sizeof(int32_t) * 131072;
         break;
     case CODEC_ID_TTA:
-        p_sys->i_output_max = p_sys->p_context->channels * sizeof(int33_t) * p_sys->p_context->sample_rate * 2;
+        p_sys->i_output_max = p_sys->p_context->channels * sizeof(int32_t) * p_sys->p_context->sample_rate * 2;
         break;
     case CODEC_ID_FLAC:
         p_sys->i_output_max = 8 * sizeof(int32_t) * 65535;