From 364f4a362060d194bbb6473e8a9661108c0cda8a Mon Sep 17 00:00:00 2001 From: Ramiro Polla Date: Sat, 23 May 2009 01:20:42 +0000 Subject: Revert part of r18903: MLP DSP functions x86-optimized. 12.59% overall speedup in x86_32 9.98% overall speedup in x86_64 compared to gcc 4.3.3 It breaks on x86_64 with PIC because the MANGLE macro appends (%%rip), which is not wanted for labels. Originally committed as revision 18904 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mlpdsp.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'libavcodec/mlpdsp.c') diff --git a/libavcodec/mlpdsp.c b/libavcodec/mlpdsp.c index 79059d925a..6519b16eab 100644 --- a/libavcodec/mlpdsp.c +++ b/libavcodec/mlpdsp.c @@ -55,11 +55,7 @@ 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); } -- cgit v1.2.3