diff options
author | Marc Hoffman <mmhoffm@gmail.com> | 2007-07-15 21:48:17 +0000 |
---|---|---|
committer | Marc Hoffman <mmhoffm@gmail.com> | 2007-07-15 21:48:17 +0000 |
commit | 2843a452c9bc492fd54c21abd1e420528248ece7 (patch) | |
tree | 341fa1aad2c2ee9af48ad04b8840290e841bb89a | |
parent | cb762e395581c2fc26e0021f6fe837bc4a03680e (diff) | |
download | ffmpeg-2843a452c9bc492fd54c21abd1e420528248ece7.tar.gz |
cosmetic changing hardwired 20 to SUBBAND_SIZE
Originally committed as revision 9691 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/cook.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cook.c b/libavcodec/cook.c index 2d4a72ed55..8a84470e6d 100644 --- a/libavcodec/cook.c +++ b/libavcodec/cook.c @@ -598,7 +598,7 @@ static void decode_vectors(COOKContext* q, int* category, } scalar_dequant(q, index, quant_index_table[band], subband_coef_index, subband_coef_sign, - &mlt_buffer[band * 20]); + &mlt_buffer[band * SUBBAND_SIZE]); } if(q->total_subbands*SUBBAND_SIZE >= q->samples_per_channel){ |