comparison rv40.c @ 9550:d418640c8d86 libavcodec

cosmetics: remove extra space indentation
author kostya
date Fri, 24 Apr 2009 05:52:53 +0000
parents b293cd788af3
children 305536ce781f
comparison
equal deleted inserted replaced
9549:7a51c0815b28 9550:d418640c8d86
74 init_vlc(&aic_mode2_vlc[i], AIC_MODE2_BITS, AIC_MODE2_SIZE, 74 init_vlc(&aic_mode2_vlc[i], AIC_MODE2_BITS, AIC_MODE2_SIZE,
75 aic_mode2_vlc_bits[i], 1, 1, 75 aic_mode2_vlc_bits[i], 1, 1,
76 aic_mode2_vlc_codes[i], 2, 2, INIT_VLC_USE_NEW_STATIC); 76 aic_mode2_vlc_codes[i], 2, 2, INIT_VLC_USE_NEW_STATIC);
77 } 77 }
78 for(i = 0; i < NUM_PTYPE_VLCS; i++){ 78 for(i = 0; i < NUM_PTYPE_VLCS; i++){
79 ptype_vlc[i].table = &ptype_table[i << PTYPE_VLC_BITS]; 79 ptype_vlc[i].table = &ptype_table[i << PTYPE_VLC_BITS];
80 ptype_vlc[i].table_allocated = 1 << PTYPE_VLC_BITS; 80 ptype_vlc[i].table_allocated = 1 << PTYPE_VLC_BITS;
81 init_vlc_sparse(&ptype_vlc[i], PTYPE_VLC_BITS, PTYPE_VLC_SIZE, 81 init_vlc_sparse(&ptype_vlc[i], PTYPE_VLC_BITS, PTYPE_VLC_SIZE,
82 ptype_vlc_bits[i], 1, 1, 82 ptype_vlc_bits[i], 1, 1,
83 ptype_vlc_codes[i], 1, 1, 83 ptype_vlc_codes[i], 1, 1,
84 ptype_vlc_syms, 1, 1, INIT_VLC_USE_NEW_STATIC); 84 ptype_vlc_syms, 1, 1, INIT_VLC_USE_NEW_STATIC);
85 } 85 }
86 for(i = 0; i < NUM_BTYPE_VLCS; i++){ 86 for(i = 0; i < NUM_BTYPE_VLCS; i++){
87 btype_vlc[i].table = &btype_table[i << BTYPE_VLC_BITS]; 87 btype_vlc[i].table = &btype_table[i << BTYPE_VLC_BITS];
88 btype_vlc[i].table_allocated = 1 << BTYPE_VLC_BITS; 88 btype_vlc[i].table_allocated = 1 << BTYPE_VLC_BITS;
89 init_vlc_sparse(&btype_vlc[i], BTYPE_VLC_BITS, BTYPE_VLC_SIZE, 89 init_vlc_sparse(&btype_vlc[i], BTYPE_VLC_BITS, BTYPE_VLC_SIZE,
90 btype_vlc_bits[i], 1, 1, 90 btype_vlc_bits[i], 1, 1,
91 btype_vlc_codes[i], 1, 1, 91 btype_vlc_codes[i], 1, 1,
92 btype_vlc_syms, 1, 1, INIT_VLC_USE_NEW_STATIC); 92 btype_vlc_syms, 1, 1, INIT_VLC_USE_NEW_STATIC);
93 } 93 }
94 } 94 }