comparison dsputil.h @ 4239:30b14d0f2324 libavcodec

Correct rounding values in overlap filtering
author kostya
date Sun, 26 Nov 2006 04:57:31 +0000
parents bbe0bc387a19
children e880555ad2c6
comparison
equal deleted inserted replaced
4238:a784639411d6 4239:30b14d0f2324
395 /* vc1 functions */ 395 /* vc1 functions */
396 void (*vc1_inv_trans_8x8)(DCTELEM *b); 396 void (*vc1_inv_trans_8x8)(DCTELEM *b);
397 void (*vc1_inv_trans_8x4)(DCTELEM *b, int n); 397 void (*vc1_inv_trans_8x4)(DCTELEM *b, int n);
398 void (*vc1_inv_trans_4x8)(DCTELEM *b, int n); 398 void (*vc1_inv_trans_4x8)(DCTELEM *b, int n);
399 void (*vc1_inv_trans_4x4)(DCTELEM *b, int n); 399 void (*vc1_inv_trans_4x4)(DCTELEM *b, int n);
400 void (*vc1_v_overlap)(uint8_t* src, int stride, int rnd); 400 void (*vc1_v_overlap)(uint8_t* src, int stride);
401 void (*vc1_h_overlap)(uint8_t* src, int stride, int rnd); 401 void (*vc1_h_overlap)(uint8_t* src, int stride);
402 /* put 8x8 block with bicubic interpolation and quarterpel precision 402 /* put 8x8 block with bicubic interpolation and quarterpel precision
403 * last argument is actually round value instead of height 403 * last argument is actually round value instead of height
404 */ 404 */
405 op_pixels_func put_vc1_mspel_pixels_tab[16]; 405 op_pixels_func put_vc1_mspel_pixels_tab[16];
406 } DSPContext; 406 } DSPContext;