diff dsputil.h @ 2045:9447bbd8a7e9 libavcodec

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
author michael
date Sun, 30 May 2004 21:21:13 +0000
parents b6f2add2511e
children 9e4bebc39ade
line wrap: on
line diff
--- a/dsputil.h	Sun May 30 20:37:15 2004 +0000
+++ b/dsputil.h	Sun May 30 21:21:13 2004 +0000
@@ -261,8 +261,7 @@
     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*/);