summaryrefslogtreecommitdiff
path: root/libavcodec/x86/mlpdsp.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-06-22 23:30:15 +0200
committerDiego Biurrun <diego@biurrun.de>2011-06-28 13:14:37 +0200
commitd2ee495fb241fa4ef5b8b56161328c4379d1c79a (patch)
treefbce4b79385ee5a59959a06b8276ab379b4099db /libavcodec/x86/mlpdsp.c
parent1bb52045d3a6eb3fa35dbe8c9775ae07329e4cd6 (diff)
configure: Drop check for availability of ten assembler operands.
This was done to support gcc 2.95, which is an old legacy compiler that fails to compile the current codebase anyway.
Diffstat (limited to 'libavcodec/x86/mlpdsp.c')
-rw-r--r--libavcodec/x86/mlpdsp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/x86/mlpdsp.c b/libavcodec/x86/mlpdsp.c
index 333dc561f1..400855d7c4 100644
--- a/libavcodec/x86/mlpdsp.c
+++ b/libavcodec/x86/mlpdsp.c
@@ -23,7 +23,7 @@
#include "libavcodec/dsputil.h"
#include "libavcodec/mlp.h"
-#if HAVE_7REGS && HAVE_TEN_OPERANDS
+#if HAVE_7REGS
extern void ff_mlp_firorder_8;
extern void ff_mlp_firorder_7;
@@ -171,11 +171,11 @@ static void mlp_filter_channel_x86(int32_t *state, const int32_t *coeff,
);
}
-#endif /* HAVE_7REGS && HAVE_TEN_OPERANDS */
+#endif /* HAVE_7REGS */
void ff_mlp_init_x86(DSPContext* c, AVCodecContext *avctx)
{
-#if HAVE_7REGS && HAVE_TEN_OPERANDS
+#if HAVE_7REGS
c->mlp_filter_channel = mlp_filter_channel_x86;
#endif
}