diff mlpdsp.c @ 9705:1db34b8dcf15 libavcodec

mlp: Re-enable x86-optimized DSP functions.
author ramiro
date Mon, 25 May 2009 01:53:43 +0000
parents 61b77bb5414a
children 0b220468ba0d
line wrap: on
line diff
--- a/mlpdsp.c	Mon May 25 01:52:05 2009 +0000
+++ b/mlpdsp.c	Mon May 25 01:53:43 2009 +0000
@@ -55,7 +55,11 @@
     }
 }
 
+void ff_mlp_init_x86(DSPContext* c, AVCodecContext *avctx);
+
 void ff_mlp_init(DSPContext* c, AVCodecContext *avctx)
 {
     c->mlp_filter_channel = ff_mlp_filter_channel;
+    if (ARCH_X86)
+        ff_mlp_init_x86(c, avctx);
 }