comparison aac.c @ 7851:a6afd0f2a849 libavcodec

Reindent after last commit
author superdump
date Fri, 12 Sep 2008 14:33:35 +0000
parents 77030651ddd0
children 9a135b6a1dc7
comparison
equal deleted inserted replaced
7850:77030651ddd0 7851:a6afd0f2a849
628 tns->order[w][filt], tns_max_order); 628 tns->order[w][filt], tns_max_order);
629 tns->order[w][filt] = 0; 629 tns->order[w][filt] = 0;
630 return -1; 630 return -1;
631 } 631 }
632 if (tns->order[w][filt]) { 632 if (tns->order[w][filt]) {
633 tns->direction[w][filt] = get_bits1(gb); 633 tns->direction[w][filt] = get_bits1(gb);
634 coef_compress = get_bits1(gb); 634 coef_compress = get_bits1(gb);
635 coef_len = coef_res + 3 - coef_compress; 635 coef_len = coef_res + 3 - coef_compress;
636 tmp2_idx = 2*coef_compress + coef_res; 636 tmp2_idx = 2*coef_compress + coef_res;
637 637
638 for (i = 0; i < tns->order[w][filt]; i++) 638 for (i = 0; i < tns->order[w][filt]; i++)
639 tns->coef[w][filt][i] = tns_tmp2_map[tmp2_idx][get_bits(gb, coef_len)]; 639 tns->coef[w][filt][i] = tns_tmp2_map[tmp2_idx][get_bits(gb, coef_len)];
640 } 640 }
641 } 641 }
642 } 642 }
643 } 643 }
644 return 0; 644 return 0;