comparison ra288.c @ 7443:a8b985890c34 libavcodec

Cosmetics: new line
author vitor
date Mon, 28 Jul 2008 10:49:44 +0000
parents 2ccb81f932f0
children b15534513059
comparison
equal deleted inserted replaced
7442:2ccb81f932f0 7443:a8b985890c34
236 init_get_bits(&gb, buf, avctx->block_align * 8); 236 init_get_bits(&gb, buf, avctx->block_align * 8);
237 237
238 for (x=0; x < 32; x++) { 238 for (x=0; x < 32; x++) {
239 float gain = amptable[get_bits(&gb, 3)]; 239 float gain = amptable[get_bits(&gb, 3)];
240 int cb_coef = get_bits(&gb, 6 + (x&1)); 240 int cb_coef = get_bits(&gb, 6 + (x&1));
241
241 decode(ractx, gain, cb_coef); 242 decode(ractx, gain, cb_coef);
242 243
243 for (y=0; y < 5; y++) 244 for (y=0; y < 5; y++)
244 *(out++) = 8 * ractx->sp_block[4 - y]; 245 *(out++) = 8 * ractx->sp_block[4 - y];
245 246