[vlc-devel] commit: 10l: Fix typo (Jean-Baptiste Kempf )
git version control
git at videolan.org
Wed Sep 2 22:28:41 CEST 2009
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Wed Sep 2 22:28:26 2009 +0200| [5300a9e008d3f0c477c14472faf52bfb52efb372] | committer: Jean-Baptiste Kempf
10l: Fix typo
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5300a9e008d3f0c477c14472faf52bfb52efb372
---
modules/codec/avcodec/audio.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/codec/avcodec/audio.c b/modules/codec/avcodec/audio.c
index 687bd04..77413fd 100644
--- a/modules/codec/avcodec/audio.c
+++ b/modules/codec/avcodec/audio.c
@@ -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;
More information about the vlc-devel
mailing list