From 61f5b14a8e2b4f64acb6296ac64c2309e13d3ae9 Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Sun, 26 Nov 2006 04:57:31 +0000 Subject: Correct rounding values in overlap filtering Originally committed as revision 7171 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dsputil.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/dsputil.h') diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 9d246a2dfc..1097b8735e 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -397,8 +397,8 @@ typedef struct DSPContext { void (*vc1_inv_trans_8x4)(DCTELEM *b, int n); void (*vc1_inv_trans_4x8)(DCTELEM *b, int n); void (*vc1_inv_trans_4x4)(DCTELEM *b, int n); - void (*vc1_v_overlap)(uint8_t* src, int stride, int rnd); - void (*vc1_h_overlap)(uint8_t* src, int stride, int rnd); + void (*vc1_v_overlap)(uint8_t* src, int stride); + void (*vc1_h_overlap)(uint8_t* src, int stride); /* put 8x8 block with bicubic interpolation and quarterpel precision * last argument is actually round value instead of height */ -- cgit v1.2.3