From 63c3b716d715b26c30098fb12a7876c550c13ac8 Mon Sep 17 00:00:00 2001 From: Nick Brereton Date: Sun, 20 Jun 2010 22:07:32 +0000 Subject: [PATCH] Fix typo in macro name. Patch by Nick Brereton, nick nbrereton net Originally committed as revision 23668 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dca.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/dca.c b/libavcodec/dca.c index 10bc956e98..420cb1744a 100644 --- a/libavcodec/dca.c +++ b/libavcodec/dca.c @@ -44,7 +44,7 @@ #define DCA_PRIM_CHANNELS_MAX (5) #define DCA_SUBBANDS (32) #define DCA_ABITS_MAX (32) /* Should be 28 */ -#define DCA_SUBSUBFAMES_MAX (4) +#define DCA_SUBSUBFRAMES_MAX (4) #define DCA_LFE_MAX (3) enum DCAMode { @@ -222,7 +222,7 @@ typedef struct { int high_freq_vq[DCA_PRIM_CHANNELS_MAX][DCA_SUBBANDS]; ///< VQ encoded high frequency subbands - float lfe_data[2 * DCA_SUBSUBFAMES_MAX * DCA_LFE_MAX * + float lfe_data[2 * DCA_SUBSUBFRAMES_MAX * DCA_LFE_MAX * 2 /*history */ ]; ///< Low frequency effect data int lfe_scale_factor;