summaryrefslogtreecommitdiff
path: root/libavcodec/mlpdsp.c
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@gmail.com>2009-05-23 01:20:42 +0000
committerRamiro Polla <ramiro.polla@gmail.com>2009-05-23 01:20:42 +0000
commit364f4a362060d194bbb6473e8a9661108c0cda8a (patch)
treee248923289a2a37a6ea6a9e052db03c23b1f7374 /libavcodec/mlpdsp.c
parent5624766d18f0529487d074e96dce9084b6561996 (diff)
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
Diffstat (limited to 'libavcodec/mlpdsp.c')
-rw-r--r--libavcodec/mlpdsp.c4
1 files changed, 0 insertions, 4 deletions
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);
}