diff dsputil.c @ 7995:1fbfce20cb79 libavcodec

Move VP3 loop filter to DSPContext
author conrad
date Sat, 04 Oct 2008 10:26:17 +0000
parents 7cf793954871
children 3d4e01bcd2a5
line wrap: on
line diff
--- a/dsputil.c	Sat Oct 04 09:43:11 2008 +0000
+++ b/dsputil.c	Sat Oct 04 10:26:17 2008 +0000
@@ -4471,6 +4471,11 @@
         c->h263_v_loop_filter= h263_v_loop_filter_c;
     }
 
+    if (ENABLE_VP3_DECODER || ENABLE_THEORA_DECODER) {
+        c->vp3_h_loop_filter= ff_vp3_h_loop_filter_c;
+        c->vp3_v_loop_filter= ff_vp3_v_loop_filter_c;
+    }
+
     c->h261_loop_filter= h261_loop_filter_c;
 
     c->try_8x8basis= try_8x8basis_c;