comparison dv.c @ 6001:f4859c13426b libavcodec

add ff_ prefix to all simple_idct symbols
author aurel
date Sat, 08 Dec 2007 21:21:11 +0000
parents c23a5c8263bc
children dfdff1ca78a7
comparison
equal deleted inserted replaced
6000:791240825ac4 6001:f4859c13426b
223 for (i=0; i<64; i++) 223 for (i=0; i<64; i++)
224 s->dv_zigzag[0][i] = dsp.idct_permutation[ff_zigzag_direct[i]]; 224 s->dv_zigzag[0][i] = dsp.idct_permutation[ff_zigzag_direct[i]];
225 225
226 /* 248DCT setup */ 226 /* 248DCT setup */
227 s->fdct[1] = dsp.fdct248; 227 s->fdct[1] = dsp.fdct248;
228 s->idct_put[1] = simple_idct248_put; // FIXME: need to add it to DSP 228 s->idct_put[1] = ff_simple_idct248_put; // FIXME: need to add it to DSP
229 if(avctx->lowres){ 229 if(avctx->lowres){
230 for (i=0; i<64; i++){ 230 for (i=0; i<64; i++){
231 int j= ff_zigzag248_direct[i]; 231 int j= ff_zigzag248_direct[i];
232 s->dv_zigzag[1][i] = dsp.idct_permutation[(j&7) + (j&8)*4 + (j&48)/2]; 232 s->dv_zigzag[1][i] = dsp.idct_permutation[(j&7) + (j&8)*4 + (j&48)/2];
233 } 233 }