aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/ac3enc.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2010-12-14 14:51:56 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2010-12-14 14:51:56 +0000
commit777732756a51e4aaa85e69717ed14afa06788fca (patch)
tree5d75ad2536beed82b5e4fdca3666a9c25e6dcbb3 /libavcodec/ac3enc.c
parentaab45ca3def0e23376b811a3583d7e2a0e233473 (diff)
downloadffmpeg-777732756a51e4aaa85e69717ed14afa06788fca.tar.gz
cosmetics: rename a variable for consistency
Originally committed as revision 25972 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3enc.c')
-rw-r--r--libavcodec/ac3enc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ac3enc.c b/libavcodec/ac3enc.c
index c830c38c9d..0c23a024e6 100644
--- a/libavcodec/ac3enc.c
+++ b/libavcodec/ac3enc.c
@@ -772,7 +772,7 @@ static void output_audio_block(AC3EncodeContext *s,
uint8_t exp_strategy[AC3_MAX_CHANNELS],
uint8_t encoded_exp[AC3_MAX_CHANNELS][AC3_MAX_COEFS],
uint8_t bap[AC3_MAX_CHANNELS][AC3_MAX_COEFS],
- int32_t mdct_coefs[AC3_MAX_CHANNELS][AC3_MAX_COEFS],
+ int32_t mdct_coef[AC3_MAX_CHANNELS][AC3_MAX_COEFS],
int8_t exp_shift[AC3_MAX_CHANNELS],
int block_num)
{
@@ -896,7 +896,7 @@ static void output_audio_block(AC3EncodeContext *s,
int b, c, e, v;
for (i = 0; i < s->nb_coefs[ch]; i++) {
- c = mdct_coefs[ch][i];
+ c = mdct_coef[ch][i];
e = encoded_exp[ch][i] - exp_shift[ch];
b = bap[ch][i];
switch (b) {