comparison atrac1.c @ 10217:35f1814a6496 libavcodec

Cosmetics, indentation.
author banan
date Mon, 21 Sep 2009 20:53:29 +0000
parents 5906eb8b992b
children 84a9a55135f4
comparison
equal deleted inserted replaced
10216:5906eb8b992b 10217:35f1814a6496
224 int pos; 224 int pos;
225 225
226 int num_specs = specs_per_bfu[bfu_num]; 226 int num_specs = specs_per_bfu[bfu_num];
227 int word_len = !!idwls[bfu_num] + idwls[bfu_num]; 227 int word_len = !!idwls[bfu_num] + idwls[bfu_num];
228 float scale_factor = sf_table[idsfs[bfu_num]]; 228 float scale_factor = sf_table[idsfs[bfu_num]];
229 bits_used += word_len * num_specs; /* add number of bits consumed by current BFU */ 229 bits_used += word_len * num_specs; /* add number of bits consumed by current BFU */
230 230
231 /* check for bitstream overflow */ 231 /* check for bitstream overflow */
232 if (bits_used > AT1_SU_MAX_BITS) 232 if (bits_used > AT1_SU_MAX_BITS)
233 return -1; 233 return -1;
234 234