summaryrefslogtreecommitdiff
path: root/libavcodec/mlpdsp.c
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@gmail.com>2009-05-25 01:53:43 +0000
committerRamiro Polla <ramiro.polla@gmail.com>2009-05-25 01:53:43 +0000
commitcbd7836e88220a3c4722858635394ff65aac28d8 (patch)
tree5ba018469cae912863a9a30e6b2f687c573a11be /libavcodec/mlpdsp.c
parent7c4c60e520054f04f37a110ecefcc408fb9d5fda (diff)
mlp: Re-enable x86-optimized DSP functions.
Originally committed as revision 18936 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mlpdsp.c')
-rw-r--r--libavcodec/mlpdsp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/mlpdsp.c b/libavcodec/mlpdsp.c
index 6519b16eab..79059d925a 100644
--- a/libavcodec/mlpdsp.c
+++ b/libavcodec/mlpdsp.c
@@ -55,7 +55,11 @@ static void ff_mlp_filter_channel(int32_t *state, const int32_t *coeff,
}
}
+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);
}