summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-12-01 15:49:10 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-12-01 15:49:10 +0000
commit5b5404e32fc6d7a7b390eecfd4f106fdbe2c8a03 (patch)
treeac53ad8d49319e372ec46abb8dff3162142e5aee /libavcodec/dsputil.c
parent332f9ac4e31ce5e6d0c42ac9e0229d7d1b2b4d60 (diff)
10l
Originally committed as revision 2550 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r--libavcodec/dsputil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c
index 3deb9ebdba..766a350ab3 100644
--- a/libavcodec/dsputil.c
+++ b/libavcodec/dsputil.c
@@ -2287,7 +2287,7 @@ static void h263_v_loop_filter_c(uint8_t *src, int stride, int qscale){
src[x-1*stride] = p1;
src[x+0*stride] = p2;
- ad1= ABS(d1);
+ ad1= ABS(d1)>>1;
d2= clip((p0-p3)/4, -ad1, ad1);