comparison dsputil.h @ 9443:3970fe47fea3 libavcodec

Split VC1 loop filter into separate functions for h/v and size
author conrad
date Wed, 15 Apr 2009 06:22:17 +0000
parents a91f60938763
children 5e1d9508b62f
comparison
equal deleted inserted replaced
9442:a91f60938763 9443:3970fe47fea3
480 void (*vc1_inv_trans_8x4)(uint8_t *dest, int line_size, DCTELEM *block); 480 void (*vc1_inv_trans_8x4)(uint8_t *dest, int line_size, DCTELEM *block);
481 void (*vc1_inv_trans_4x8)(uint8_t *dest, int line_size, DCTELEM *block); 481 void (*vc1_inv_trans_4x8)(uint8_t *dest, int line_size, DCTELEM *block);
482 void (*vc1_inv_trans_4x4)(uint8_t *dest, int line_size, DCTELEM *block); 482 void (*vc1_inv_trans_4x4)(uint8_t *dest, int line_size, DCTELEM *block);
483 void (*vc1_v_overlap)(uint8_t* src, int stride); 483 void (*vc1_v_overlap)(uint8_t* src, int stride);
484 void (*vc1_h_overlap)(uint8_t* src, int stride); 484 void (*vc1_h_overlap)(uint8_t* src, int stride);
485 void (*vc1_loop_filter)(uint8_t *src, int step, int stride, int len, int pq); 485 void (*vc1_v_loop_filter4)(uint8_t *src, int stride, int pq);
486 void (*vc1_h_loop_filter4)(uint8_t *src, int stride, int pq);
487 void (*vc1_v_loop_filter8)(uint8_t *src, int stride, int pq);
488 void (*vc1_h_loop_filter8)(uint8_t *src, int stride, int pq);
489 void (*vc1_v_loop_filter16)(uint8_t *src, int stride, int pq);
490 void (*vc1_h_loop_filter16)(uint8_t *src, int stride, int pq);
486 /* put 8x8 block with bicubic interpolation and quarterpel precision 491 /* put 8x8 block with bicubic interpolation and quarterpel precision
487 * last argument is actually round value instead of height 492 * last argument is actually round value instead of height
488 */ 493 */
489 op_pixels_func put_vc1_mspel_pixels_tab[16]; 494 op_pixels_func put_vc1_mspel_pixels_tab[16];
490 op_pixels_func avg_vc1_mspel_pixels_tab[16]; 495 op_pixels_func avg_vc1_mspel_pixels_tab[16];