summaryrefslogtreecommitdiffstats
path: root/gst-libs/gst
diff options
context:
space:
mode:
authorBrian Cameron <brian.cameron@sun.com>2004-08-09 21:30:09 +0000
committerBrian Cameron <brian.cameron@sun.com>2004-08-09 21:30:09 +0000
commitafb68c99c1f4ee79218a77b78ab704ba0cff30f4 (patch)
tree2822bb203bca7aaea182c8dbb1a5f9cd2486b01c /gst-libs/gst
parent529b48cf893eae61616d08631302bcf1304e0cd0 (diff)
downloadgst-plugins-bad-afb68c99c1f4ee79218a77b78ab704ba0cff30f4.tar.gz
gst-plugins-bad-afb68c99c1f4ee79218a77b78ab704ba0cff30f4.tar.bz2
gst-plugins-bad-afb68c99c1f4ee79218a77b78ab704ba0cff30f4.zip
Finished removing GPL'ed MMX code.
Original commit message from CVS: Finished removing GPL'ed MMX code.
Diffstat (limited to 'gst-libs/gst')
-rw-r--r--gst-libs/gst/idct/idct.c17
-rw-r--r--gst-libs/gst/idct/idct.h3
2 files changed, 0 insertions, 20 deletions
diff --git a/gst-libs/gst/idct/idct.c b/gst-libs/gst/idct/idct.c
index 4d00b30f..ea24d44e 100644
--- a/gst-libs/gst/idct/idct.c
+++ b/gst-libs/gst/idct/idct.c
@@ -55,23 +55,6 @@ gst_idct_new (GstIDCTMethod method)
gst_idct_init_float_idct ();
new->convert = gst_idct_float_idct;
break;
-#ifdef HAVE_LIBMMX
- case GST_IDCT_MMX:
- GST_INFO ("using MMX_idct");
- new->convert = gst_idct_mmx_idct;
- new->need_transpose = TRUE;
- break;
- case GST_IDCT_MMX32:
- GST_INFO ("using MMX32_idct");
- new->convert = gst_idct_mmx32_idct;
- new->need_transpose = TRUE;
- break;
- case GST_IDCT_SSE:
- GST_INFO ("using SSE_idct");
- new->convert = gst_idct_sse_idct;
- new->need_transpose = TRUE;
- break;
-#endif /* HAVE_LIBMMX */
default:
GST_INFO ("method not supported");
g_free (new);
diff --git a/gst-libs/gst/idct/idct.h b/gst-libs/gst/idct/idct.h
index fa6f62cd..b1377890 100644
--- a/gst-libs/gst/idct/idct.h
+++ b/gst-libs/gst/idct/idct.h
@@ -28,9 +28,6 @@ typedef enum {
GST_IDCT_INT,
GST_IDCT_FAST_INT,
GST_IDCT_FLOAT,
- GST_IDCT_MMX,
- GST_IDCT_MMX32,
- GST_IDCT_SSE,
} GstIDCTMethod;
typedef struct _GstIDCT GstIDCT;