comparison atrac1.c @ 10198:78af613fc316 libavcodec

Fix embarassing typo in last commit: Restore mistakenly removed ','.
author diego
date Sun, 20 Sep 2009 17:18:59 +0000
parents 024dff84e511
children 38ab367d4231
comparison
equal deleted inserted replaced
10197:024dff84e511 10198:78af613fc316
109 109
110 110
111 static int at1_imdct_block(AT1SUCtx* su, AT1Ctx *q) 111 static int at1_imdct_block(AT1SUCtx* su, AT1Ctx *q)
112 { 112 {
113 int band_num, band_samples, log2_block_count, nbits, num_blocks, block_size; 113 int band_num, band_samples, log2_block_count, nbits, num_blocks, block_size;
114 unsigned int start_pos, ref_pos = 0 pos = 0; 114 unsigned int start_pos, ref_pos = 0, pos = 0;
115 115
116 for (band_num = 0; band_num < AT1_QMF_BANDS; band_num++) { 116 for (band_num = 0; band_num < AT1_QMF_BANDS; band_num++) {
117 band_samples = samples_per_band[band_num]; 117 band_samples = samples_per_band[band_num];
118 log2_block_count = su->log2_block_count[band_num]; 118 log2_block_count = su->log2_block_count[band_num];
119 119