more leak fixes
[platform/upstream/gstreamer.git] / gst / gstcpu.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gstcpu.c: CPU detection and architecture-specific routines
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #include <glib.h>
24
25 #include "gst_private.h"
26
27 #include "gstcpu.h"
28
29
30 static guint32 _gst_cpu_flags;
31
32 #ifdef HAVE_CPU_I386
33 void gst_cpuid_i386(int,long *,long *,long *,long *);
34 #define gst_cpuid gst_cpuid_i386
35
36 #else
37 #define gst_cpuid(o,a,b,c,d) (void)(a);(void)(b);(void)(c);
38 #endif
39
40 static gchar *stringcat (gchar *a,gchar *b) {
41   gchar *c;
42   if (a) {
43     c = g_strconcat(a,b,NULL);
44     g_free (a);
45   } else {
46     c = g_strdup(b);
47   }
48   return c;
49 }
50
51 void 
52 _gst_cpu_initialize (void) 
53 {
54   gchar *featurelist = NULL;
55
56   long eax=0, ebx=0, ecx=0, edx=0;
57
58   gst_cpuid(1, &eax, &ebx, &ecx, &edx);
59
60   if (edx & (1<<23)) {
61     _gst_cpu_flags |= GST_CPU_FLAG_MMX;
62     featurelist = stringcat(featurelist,"MMX ");
63   }
64   if (edx & (1<<25)) {
65     _gst_cpu_flags |= GST_CPU_FLAG_SSE;
66     featurelist = stringcat(featurelist,"SSE ");
67   }
68
69   if (!_gst_cpu_flags) {
70     featurelist = stringcat(featurelist,"NONE");
71   }
72
73   GST_INFO (GST_CAT_GST_INIT, "CPU features: %s",featurelist);
74   g_free(featurelist);
75 }
76
77 GstCPUFlags 
78 gst_cpu_get_flags (void) 
79 {
80   return _gst_cpu_flags;
81 }