From 529b48cf893eae61616d08631302bcf1304e0cd0 Mon Sep 17 00:00:00 2001 From: Brian Cameron Date: Mon, 9 Aug 2004 21:21:25 +0000 Subject: Remove GPL'ed mmx32idct.c code and supporting code, since logic in gst-plugins is not supposed to be GPL'ed. This co... Original commit message from CVS: Remove GPL'ed mmx32idct.c code and supporting code, since logic in gst-plugins is not supposed to be GPL'ed. This code provided MMX optimisations, but was never compiled in since configure never set HAVE_LIBMMX anyway. --- gst-libs/gst/idct/idct.c | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) (limited to 'gst-libs/gst/idct/idct.c') diff --git a/gst-libs/gst/idct/idct.c b/gst-libs/gst/idct/idct.c index 4be150f1..4d00b30f 100644 --- a/gst-libs/gst/idct/idct.c +++ b/gst-libs/gst/idct/idct.c @@ -35,20 +35,7 @@ gst_idct_new (GstIDCTMethod method) new->need_transpose = FALSE; if (method == GST_IDCT_DEFAULT) { -#ifdef HAVE_LIBMMX - if (gst_cpu_get_flags () & GST_CPU_FLAG_MMX) { - method = GST_IDCT_MMX; - } - /* disabled for now - if (gst_cpu_get_flags() & GST_CPU_FLAG_SSE) { - method = GST_IDCT_SSE; - } - */ - else -#endif /* HAVE_LIBMMX */ - { - method = GST_IDCT_FAST_INT; - } + method = GST_IDCT_FAST_INT; } new->convert_sparse = gst_idct_int_sparse_idct; -- cgit v1.2.1