diff options
author | Benjamin Larsson <banan@ludd.ltu.se> | 2007-02-18 20:35:22 +0000 |
---|---|---|
committer | Benjamin Larsson <banan@ludd.ltu.se> | 2007-02-18 20:35:22 +0000 |
commit | 0564528eff38fa8ed22b7eb75aafdbf760b209b4 (patch) | |
tree | c7dc111d7d9ddcb192168e37fcfe03d8eb2b4312 | |
parent | 459022f5042de7d02aa2895fc0721af401ef6037 (diff) | |
download | ffmpeg-0564528eff38fa8ed22b7eb75aafdbf760b209b4.tar.gz |
Clairyfication of the gain tool struct.
Originally committed as revision 8023 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/cook.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libavcodec/cook.c b/libavcodec/cook.c index dbb88f7729..edfe513328 100644 --- a/libavcodec/cook.c +++ b/libavcodec/cook.c @@ -66,8 +66,8 @@ typedef struct { int size; - int qidx_table1[8]; - int qidx_table2[8]; + int loccode[8]; + int levcode[8]; } COOKgain; typedef struct { @@ -355,11 +355,11 @@ static void decode_gain_info(GetBitContext *gb, COOKgain* gaininfo) { if (get_bits_count(gb) - 1 <= 0) return; for (i=0 ; i<gaininfo->size ; i++){ - gaininfo->qidx_table1[i] = get_bits(gb,3); + gaininfo->loccode[i] = get_bits(gb,3); if (get_bits1(gb)) { - gaininfo->qidx_table2[i] = get_bits(gb,4) - 7; //convert to signed + gaininfo->levcode[i] = get_bits(gb,4) - 7; //convert to signed } else { - gaininfo->qidx_table2[i] = -1; + gaininfo->levcode[i] = -1; } } } @@ -802,8 +802,8 @@ static void gain_window(COOKContext *q, float* buffer, COOKgain* gain_now, gain_index[8]=0; index = gain_previous->size; for (i=7 ; i>=0 ; i--) { - if(index && gain_previous->qidx_table1[index-1]==i) { - gain_index[i] = gain_previous->qidx_table2[index-1]; + if(index && gain_previous->loccode[index-1]==i) { + gain_index[i] = gain_previous->levcode[index-1]; index--; } else { gain_index[i]=gain_index[i+1]; @@ -818,8 +818,8 @@ static void gain_window(COOKContext *q, float* buffer, COOKgain* gain_now, tmp_gain_index = gain_index[0]; index = gain_now->size; for (i=7 ; i>=0 ; i--) { - if(index && gain_now->qidx_table1[index-1]==i) { - gain_index[i]= gain_now->qidx_table2[index-1]; + if(index && gain_now->loccode[index-1]==i) { + gain_index[i]= gain_now->levcode[index-1]; index--; } else { gain_index[i]=gain_index[i+1]; |