mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 17:25:32 +00:00
6272b94c05
* sources/makefile: add gstreamer 0.6.4 sources * sources/gstreamer-parse.patch: fixes to parse gst * gst/Gst.metadata: new metadata * gst/Makefile.in: add gapi-fixup to Makefile * gst/gst-api.xml: new api file for 0.6.4 svn path=/trunk/gtk-sharp/; revision=19625
20 lines
790 B
Diff
20 lines
790 B
Diff
Index: gstreamer-0.6.4/gst/gstatomic_impl.h
|
|
===================================================================
|
|
@@ -323,7 +323,7 @@
|
|
}
|
|
|
|
/***** MIPS *****/
|
|
-#elif defined(HAVE_CPU_MIPS) && defined(__GNUC__)
|
|
+#elif defined(HAVE_CPU_MIPS) && defined(__GNUC__) && 0
|
|
|
|
GST_INLINE_FUNC void gst_atomic_int_init (GstAtomicInt *aint, gint val) { aint->counter = val; }
|
|
GST_INLINE_FUNC void gst_atomic_int_destroy (GstAtomicInt *aint) { }
|
|
@@ -375,7 +375,6 @@
|
|
|
|
/***** S/390 *****/
|
|
#elif defined(HAVE_CPU_S390) && defined(__GNUC__)
|
|
-typedef struct { volatile int counter; } atomic_t __attribute__ ((aligned (4)));
|
|
|
|
GST_INLINE_FUNC void gst_atomic_int_init (GstAtomicInt *aint, gint val) { aint->counter = val; }
|
|
GST_INLINE_FUNC void gst_atomic_int_destroy (GstAtomicInt *aint) { }
|