mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
Finished removing GPL'ed MMX code.
Original commit message from CVS: Finished removing GPL'ed MMX code.
This commit is contained in:
parent
67e5e612be
commit
836c206c98
2 changed files with 0 additions and 20 deletions
|
@ -55,23 +55,6 @@ gst_idct_new (GstIDCTMethod method)
|
||||||
gst_idct_init_float_idct ();
|
gst_idct_init_float_idct ();
|
||||||
new->convert = gst_idct_float_idct;
|
new->convert = gst_idct_float_idct;
|
||||||
break;
|
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:
|
default:
|
||||||
GST_INFO ("method not supported");
|
GST_INFO ("method not supported");
|
||||||
g_free (new);
|
g_free (new);
|
||||||
|
|
|
@ -28,9 +28,6 @@ typedef enum {
|
||||||
GST_IDCT_INT,
|
GST_IDCT_INT,
|
||||||
GST_IDCT_FAST_INT,
|
GST_IDCT_FAST_INT,
|
||||||
GST_IDCT_FLOAT,
|
GST_IDCT_FLOAT,
|
||||||
GST_IDCT_MMX,
|
|
||||||
GST_IDCT_MMX32,
|
|
||||||
GST_IDCT_SSE,
|
|
||||||
} GstIDCTMethod;
|
} GstIDCTMethod;
|
||||||
|
|
||||||
typedef struct _GstIDCT GstIDCT;
|
typedef struct _GstIDCT GstIDCT;
|
||||||
|
|
Loading…
Reference in a new issue