diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-05-30 21:21:13 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-05-30 21:21:13 +0000 |
commit | fdbbf2e0fc1bb91a5d735a49f39337eb172e68a7 (patch) | |
tree | 173022230073f2bcc7d1d3f09bff1fe38168df48 /libavcodec/dsputil.h | |
parent | c6148de2320739d4443fa702f78eac68fc0ab044 (diff) | |
download | ffmpeg-fdbbf2e0fc1bb91a5d735a49f39337eb172e68a7.tar.gz |
rewrite h261 loop filter
no malloc(64) memcpy free stuff
no filter1 A->B then filter2 A->B (yes not B->A)
no incorrect rouding after the 1d filter
Originally committed as revision 3177 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 16f70b428b..cdc5a3b859 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -261,8 +261,7 @@ typedef struct DSPContext { void (*h263_v_loop_filter)(uint8_t *src, int stride, int qscale); void (*h263_h_loop_filter)(uint8_t *src, int stride, int qscale); - void (*h261_v_loop_filter)(uint8_t *dest,uint8_t *src, int stride); - void (*h261_h_loop_filter)(uint8_t *dest,uint8_t *src, int stride); + void (*h261_loop_filter)(uint8_t *src, int stride); /* (I)DCT */ void (*fdct)(DCTELEM *block/* align 16*/); |