mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-04 07:26:33 +00:00
gst/gst.h: Include glib-compat.h.
Original commit message from CVS: 2005-11-21 Andy Wingo <wingo@pobox.com> * gst/gst.h: Include glib-compat.h. * gst/glib-compat.h: Add G_GNUC_NULL_TERMINATED. * gst/glib-compat.c: Include the public and the private header. * gst/glib-compat-private.h: Copied here from glib-compat.h. * gst/gstvalue.c: * gst/gstpad.c: * gst/gstregistryxml.c: s/glib-compat/glib-compat-private/.
This commit is contained in:
parent
153931fa86
commit
ef7787ed72
8 changed files with 80 additions and 19 deletions
12
ChangeLog
12
ChangeLog
|
@ -1,5 +1,17 @@
|
||||||
2005-11-21 Andy Wingo <wingo@pobox.com>
|
2005-11-21 Andy Wingo <wingo@pobox.com>
|
||||||
|
|
||||||
|
* gst/gst.h: Include glib-compat.h.
|
||||||
|
|
||||||
|
* gst/glib-compat.h: Add G_GNUC_NULL_TERMINATED.
|
||||||
|
|
||||||
|
* gst/glib-compat.c: Include the public and the private header.
|
||||||
|
|
||||||
|
* gst/glib-compat-private.h: Copied here from glib-compat.h.
|
||||||
|
|
||||||
|
* gst/gstvalue.c:
|
||||||
|
* gst/gstpad.c:
|
||||||
|
* gst/gstregistryxml.c: s/glib-compat/glib-compat-private/.
|
||||||
|
|
||||||
* check/gst/gstevent.c (create_custom_events): Check that
|
* check/gst/gstevent.c (create_custom_events): Check that
|
||||||
FLUSH_STOP is serialized.
|
FLUSH_STOP is serialized.
|
||||||
|
|
||||||
|
|
27
gst/glib-compat-private.h
Normal file
27
gst/glib-compat-private.h
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
/*
|
||||||
|
* glib-compat.c
|
||||||
|
* Functions copied from glib 2.8
|
||||||
|
*
|
||||||
|
* Copyright 2005 David Schleef <ds@schleef.org>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "gst_private.h" /* for g_warning */
|
||||||
|
#include <glib.h>
|
||||||
|
|
||||||
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
|
/* copies */
|
||||||
|
#if !GLIB_CHECK_VERSION (2, 8, 0)
|
||||||
|
int g_mkdir_with_parents (const gchar *pathname, int mode);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* adaptations */
|
||||||
|
#include <glib-object.h>
|
||||||
|
GFlagsValue*
|
||||||
|
gst_flags_get_first_value (GFlagsClass *flags_class,
|
||||||
|
guint value);
|
||||||
|
|
||||||
|
GObject*
|
||||||
|
g_value_dup_gst_object (const GValue *value);
|
||||||
|
G_END_DECLS
|
||||||
|
|
|
@ -34,6 +34,7 @@
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
#include "glib-compat.h"
|
#include "glib-compat.h"
|
||||||
|
#include "glib-compat-private.h"
|
||||||
|
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#ifdef HAVE_UNISTD_H
|
#ifdef HAVE_UNISTD_H
|
||||||
|
|
|
@ -1,27 +1,46 @@
|
||||||
/*
|
/* GStreamer
|
||||||
* glib-compat.c
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
||||||
* Functions copied from glib 2.6 and 2.8
|
|
||||||
*
|
*
|
||||||
* Copyright 2005 David Schleef <ds@schleef.org>
|
* glib-compat.h: Public GLib compatibility shims
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "gst_private.h" /* for g_warning */
|
|
||||||
#include <glib.h>
|
/*
|
||||||
|
* Modified by the GLib Team and others 1997-2000. See the AUTHORS file from
|
||||||
|
* glib-2.8.0 for a list of people on the GLib Team. See the ChangeLog files
|
||||||
|
* from glib-2.8.0 for a list of changes. These files are distributed with GLib
|
||||||
|
* at ftp://ftp.gtk.org/pub/gtk/.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __GST_GLIB_COMPAT_H__
|
||||||
|
#define __GST_GLIB_COMPAT_H__
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
/* copies */
|
/* added in GLib 2.8 */
|
||||||
#if !GLIB_CHECK_VERSION (2, 8, 0)
|
#if !GLIB_CHECK_VERSION (2, 8, 0)
|
||||||
int g_mkdir_with_parents (const gchar *pathname, int mode);
|
#if __GNUC__ >= 4
|
||||||
|
#define G_GNUC_NULL_TERMINATED __attribute__((__sentinel__))
|
||||||
|
#else
|
||||||
|
#define G_GNUC_NULL_TERMINATED
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* adaptations */
|
|
||||||
#include <glib-object.h>
|
|
||||||
GFlagsValue*
|
|
||||||
gst_flags_get_first_value (GFlagsClass *flags_class,
|
|
||||||
guint value);
|
|
||||||
|
|
||||||
GObject*
|
|
||||||
g_value_dup_gst_object (const GValue *value);
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
|
#endif /* __GST_GLIB_COMPAT_H__ */
|
||||||
|
|
|
@ -26,6 +26,8 @@
|
||||||
|
|
||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
|
|
||||||
|
#include <gst/glib-compat.h>
|
||||||
|
|
||||||
#include <gst/gstenumtypes.h>
|
#include <gst/gstenumtypes.h>
|
||||||
#include <gst/gstversion.h>
|
#include <gst/gstversion.h>
|
||||||
|
|
||||||
|
|
|
@ -71,7 +71,7 @@
|
||||||
#include "gstinfo.h"
|
#include "gstinfo.h"
|
||||||
#include "gsterror.h"
|
#include "gsterror.h"
|
||||||
#include "gstvalue.h"
|
#include "gstvalue.h"
|
||||||
#include "glib-compat.h"
|
#include "glib-compat-private.h"
|
||||||
|
|
||||||
GST_DEBUG_CATEGORY_STATIC (debug_dataflow);
|
GST_DEBUG_CATEGORY_STATIC (debug_dataflow);
|
||||||
#define GST_CAT_DEFAULT GST_CAT_PADS
|
#define GST_CAT_DEFAULT GST_CAT_PADS
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
|
|
||||||
#include <libxml/xmlreader.h>
|
#include <libxml/xmlreader.h>
|
||||||
|
|
||||||
#include "glib-compat.h"
|
#include "glib-compat-private.h"
|
||||||
#include <glib/gstdio.h>
|
#include <glib/gstdio.h>
|
||||||
|
|
||||||
#define BLOCK_SIZE 1024*10
|
#define BLOCK_SIZE 1024*10
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
|
||||||
#include "gst_private.h"
|
#include "gst_private.h"
|
||||||
#include "glib-compat.h"
|
#include "glib-compat-private.h"
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
#include <gobject/gvaluecollector.h>
|
#include <gobject/gvaluecollector.h>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue