comparison mlpdec.c @ 10416:1052fe7823e8 libavcodec

mlp: Indent.
author ramiro
date Fri, 16 Oct 2009 16:12:04 +0000
parents e16322231312
children 1194d0b64bfe
comparison
equal deleted inserted replaced
10415:e16322231312 10416:1052fe7823e8
154 /** Initialize static data, constant between all invocations of the codec. */ 154 /** Initialize static data, constant between all invocations of the codec. */
155 155
156 static av_cold void init_static(void) 156 static av_cold void init_static(void)
157 { 157 {
158 if (!huff_vlc[0].bits) { 158 if (!huff_vlc[0].bits) {
159 INIT_VLC_STATIC(&huff_vlc[0], VLC_BITS, 18, 159 INIT_VLC_STATIC(&huff_vlc[0], VLC_BITS, 18,
160 &ff_mlp_huffman_tables[0][0][1], 2, 1, 160 &ff_mlp_huffman_tables[0][0][1], 2, 1,
161 &ff_mlp_huffman_tables[0][0][0], 2, 1, 512); 161 &ff_mlp_huffman_tables[0][0][0], 2, 1, 512);
162 INIT_VLC_STATIC(&huff_vlc[1], VLC_BITS, 16, 162 INIT_VLC_STATIC(&huff_vlc[1], VLC_BITS, 16,
163 &ff_mlp_huffman_tables[1][0][1], 2, 1, 163 &ff_mlp_huffman_tables[1][0][1], 2, 1,
164 &ff_mlp_huffman_tables[1][0][0], 2, 1, 512); 164 &ff_mlp_huffman_tables[1][0][0], 2, 1, 512);
165 INIT_VLC_STATIC(&huff_vlc[2], VLC_BITS, 15, 165 INIT_VLC_STATIC(&huff_vlc[2], VLC_BITS, 15,
166 &ff_mlp_huffman_tables[2][0][1], 2, 1, 166 &ff_mlp_huffman_tables[2][0][1], 2, 1,
167 &ff_mlp_huffman_tables[2][0][0], 2, 1, 512); 167 &ff_mlp_huffman_tables[2][0][0], 2, 1, 512);
168 } 168 }
169 169
170 ff_mlp_init_crc(); 170 ff_mlp_init_crc();
171 } 171 }
172 172