2000-12-28 22:12:02 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
*
|
|
|
|
* gstcpu.c: CPU detection and architecture-specific routines
|
2000-09-12 18:13:48 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2000-12-15 01:57:34 +00:00
|
|
|
#include <glib.h>
|
2000-09-12 18:13:48 +00:00
|
|
|
|
2000-12-28 22:12:02 +00:00
|
|
|
#include "gst_private.h"
|
2000-09-12 18:13:48 +00:00
|
|
|
#include "gstcpu.h"
|
|
|
|
|
|
|
|
static guint32 _gst_cpu_flags;
|
|
|
|
|
2000-09-16 10:58:23 +00:00
|
|
|
#ifdef HAVE_CPU_I386
|
2001-12-12 13:37:29 +00:00
|
|
|
void gst_cpuid_i386 (int, unsigned long *, unsigned long *, unsigned long *, unsigned long *);
|
2000-09-12 18:13:48 +00:00
|
|
|
#define gst_cpuid gst_cpuid_i386
|
|
|
|
#else
|
2000-09-16 00:59:12 +00:00
|
|
|
#define gst_cpuid(o,a,b,c,d) (void)(a);(void)(b);(void)(c);
|
2000-09-12 18:13:48 +00:00
|
|
|
#endif
|
|
|
|
|
2001-12-12 13:37:29 +00:00
|
|
|
static gchar *
|
|
|
|
stringcat (gchar * a, gchar * b)
|
|
|
|
{
|
2001-01-01 00:17:21 +00:00
|
|
|
gchar *c;
|
2001-12-12 13:37:29 +00:00
|
|
|
|
2001-01-01 00:17:21 +00:00
|
|
|
if (a) {
|
2001-12-12 13:37:29 +00:00
|
|
|
c = g_strconcat (a, b, NULL);
|
2001-01-01 03:43:27 +00:00
|
|
|
g_free (a);
|
2001-12-12 13:37:29 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
c = g_strdup (b);
|
2001-01-01 03:43:27 +00:00
|
|
|
}
|
2001-01-01 00:17:21 +00:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2001-02-28 20:32:47 +00:00
|
|
|
|
2001-12-12 13:37:29 +00:00
|
|
|
void
|
|
|
|
_gst_cpu_initialize (void)
|
2000-09-12 18:13:48 +00:00
|
|
|
{
|
2001-01-01 00:17:21 +00:00
|
|
|
gchar *featurelist = NULL;
|
2001-02-28 20:32:47 +00:00
|
|
|
gboolean AMD;
|
2001-01-01 00:17:21 +00:00
|
|
|
|
2001-12-12 13:37:29 +00:00
|
|
|
gulong eax = 0, ebx = 0, ecx = 0, edx = 0;
|
2000-09-12 18:13:48 +00:00
|
|
|
|
2001-12-12 13:37:29 +00:00
|
|
|
gst_cpuid (0, &eax, &ebx, &ecx, &edx);
|
2001-02-28 20:32:47 +00:00
|
|
|
|
|
|
|
AMD = (ebx == 0x68747541) && (ecx == 0x444d4163) && (edx == 0x69746e65);
|
|
|
|
|
2001-12-12 13:37:29 +00:00
|
|
|
gst_cpuid (1, &eax, &ebx, &ecx, &edx);
|
2000-09-12 18:13:48 +00:00
|
|
|
|
2001-12-12 13:37:29 +00:00
|
|
|
if (edx & (1 << 23)) {
|
2000-09-14 20:31:03 +00:00
|
|
|
_gst_cpu_flags |= GST_CPU_FLAG_MMX;
|
2001-12-12 13:37:29 +00:00
|
|
|
featurelist = stringcat (featurelist, "MMX ");
|
|
|
|
|
|
|
|
if (edx & (1 << 25)) {
|
2001-02-28 20:32:47 +00:00
|
|
|
_gst_cpu_flags |= GST_CPU_FLAG_SSE;
|
|
|
|
_gst_cpu_flags |= GST_CPU_FLAG_MMXEXT;
|
2001-12-12 13:37:29 +00:00
|
|
|
featurelist = stringcat (featurelist, "SSE ");
|
2001-02-28 20:32:47 +00:00
|
|
|
}
|
|
|
|
|
2001-12-12 13:37:29 +00:00
|
|
|
gst_cpuid (0x80000000, &eax, &ebx, &ecx, &edx);
|
2001-02-28 20:32:47 +00:00
|
|
|
|
|
|
|
if (eax >= 0x80000001) {
|
|
|
|
|
2001-12-12 13:37:29 +00:00
|
|
|
gst_cpuid (0x80000001, &eax, &ebx, &ecx, &edx);
|
2001-02-28 20:32:47 +00:00
|
|
|
|
2001-12-12 13:37:29 +00:00
|
|
|
if (edx & (1 << 31)) {
|
|
|
|
_gst_cpu_flags |= GST_CPU_FLAG_3DNOW;
|
|
|
|
featurelist = stringcat (featurelist, "3DNOW ");
|
2001-02-28 20:32:47 +00:00
|
|
|
}
|
2001-12-12 13:37:29 +00:00
|
|
|
if (AMD && (edx & (1 << 22))) {
|
|
|
|
_gst_cpu_flags |= GST_CPU_FLAG_MMXEXT;
|
|
|
|
featurelist = stringcat (featurelist, "MMXEXT ");
|
2001-02-28 20:32:47 +00:00
|
|
|
}
|
|
|
|
}
|
2001-02-27 19:44:49 +00:00
|
|
|
}
|
2000-09-14 20:31:03 +00:00
|
|
|
|
|
|
|
if (!_gst_cpu_flags) {
|
2001-12-12 13:37:29 +00:00
|
|
|
featurelist = stringcat (featurelist, "NONE");
|
2000-09-14 20:31:03 +00:00
|
|
|
}
|
2000-09-12 18:13:48 +00:00
|
|
|
|
2001-12-12 13:37:29 +00:00
|
|
|
GST_INFO (GST_CAT_GST_INIT, "CPU features: (%08lx) %s", edx, featurelist);
|
|
|
|
g_free (featurelist);
|
2000-09-12 18:13:48 +00:00
|
|
|
}
|
|
|
|
|
2001-12-12 13:37:29 +00:00
|
|
|
GstCPUFlags
|
|
|
|
gst_cpu_get_flags (void)
|
2000-09-12 18:13:48 +00:00
|
|
|
{
|
|
|
|
return _gst_cpu_flags;
|
|
|
|
}
|