mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
57c8e0146f
Add new GST_API_EXPORT in config.h and use that for GST_*_API decorators instead of GST_EXPORT. The right export define depends on the toolchain and whether we're using -fvisibility=hidden or not, so it's better to set it to the right thing directly than hard-coding a compiler whitelist in the public header. We put the export define into config.h instead of passing it via the command line to the compiler because it might contain spaces and brackets and in the autotools scenario we'd have to pass that through multiple layers of plumbing and Makefile/shell escaping and we're just not going to be *that* lucky. The export define is only used if we're compiling our lib, not by external users of the lib headers, so it's not a problem to put it into config.h Also, this means all .c files of libs need to include config.h to get the export marker defined, so fix up a few that didn't include config.h. This commit depends on a common submodule commit that makes gst-glib-gen.mak add an #include "config.h" to generated enum/marshal .c files for the autotools build. https://bugzilla.gnome.org/show_bug.cgi?id=797185
141 lines
3.8 KiB
C
141 lines
3.8 KiB
C
/* GStreamer
|
|
* Copyright (C) <2011> Wim Taymans <wim.taymans@gmail.com>
|
|
*
|
|
* 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., 51 Franklin St, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
/**
|
|
* SECTION:gstnetaddressmeta
|
|
* @title: GstNetAddressMeta
|
|
* @short_description: Network address metadata
|
|
*
|
|
* #GstNetAddressMeta can be used to store a network address (a #GSocketAddress)
|
|
* in a #GstBuffer so that it network elements can track the to and from address
|
|
* of the buffer.
|
|
*/
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <string.h>
|
|
|
|
#include "gstnetaddressmeta.h"
|
|
|
|
static gboolean
|
|
net_address_meta_init (GstMeta * meta, gpointer params, GstBuffer * buffer)
|
|
{
|
|
GstNetAddressMeta *nmeta = (GstNetAddressMeta *) meta;
|
|
|
|
nmeta->addr = NULL;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static gboolean
|
|
net_address_meta_transform (GstBuffer * transbuf, GstMeta * meta,
|
|
GstBuffer * buffer, GQuark type, gpointer data)
|
|
{
|
|
GstNetAddressMeta *smeta, *dmeta;
|
|
smeta = (GstNetAddressMeta *) meta;
|
|
|
|
/* we always copy no matter what transform */
|
|
dmeta = gst_buffer_add_net_address_meta (transbuf, smeta->addr);
|
|
if (!dmeta)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static void
|
|
net_address_meta_free (GstMeta * meta, GstBuffer * buffer)
|
|
{
|
|
GstNetAddressMeta *nmeta = (GstNetAddressMeta *) meta;
|
|
|
|
if (nmeta->addr)
|
|
g_object_unref (nmeta->addr);
|
|
nmeta->addr = NULL;
|
|
}
|
|
|
|
GType
|
|
gst_net_address_meta_api_get_type (void)
|
|
{
|
|
static volatile GType type;
|
|
static const gchar *tags[] = { "origin", NULL };
|
|
|
|
if (g_once_init_enter (&type)) {
|
|
GType _type = gst_meta_api_type_register ("GstNetAddressMetaAPI", tags);
|
|
g_once_init_leave (&type, _type);
|
|
}
|
|
return type;
|
|
}
|
|
|
|
const GstMetaInfo *
|
|
gst_net_address_meta_get_info (void)
|
|
{
|
|
static const GstMetaInfo *meta_info = NULL;
|
|
|
|
if (g_once_init_enter ((GstMetaInfo **) & meta_info)) {
|
|
const GstMetaInfo *mi = gst_meta_register (GST_NET_ADDRESS_META_API_TYPE,
|
|
"GstNetAddressMeta",
|
|
sizeof (GstNetAddressMeta),
|
|
net_address_meta_init,
|
|
net_address_meta_free, net_address_meta_transform);
|
|
g_once_init_leave ((GstMetaInfo **) & meta_info, (GstMetaInfo *) mi);
|
|
}
|
|
return meta_info;
|
|
}
|
|
|
|
/**
|
|
* gst_buffer_add_net_address_meta:
|
|
* @buffer: a #GstBuffer
|
|
* @addr: a @GSocketAddress to connect to @buffer
|
|
*
|
|
* Attaches @addr as metadata in a #GstNetAddressMeta to @buffer.
|
|
*
|
|
* Returns: (transfer none): a #GstNetAddressMeta connected to @buffer
|
|
*/
|
|
GstNetAddressMeta *
|
|
gst_buffer_add_net_address_meta (GstBuffer * buffer, GSocketAddress * addr)
|
|
{
|
|
GstNetAddressMeta *meta;
|
|
|
|
g_return_val_if_fail (GST_IS_BUFFER (buffer), NULL);
|
|
g_return_val_if_fail (G_IS_SOCKET_ADDRESS (addr), NULL);
|
|
|
|
meta =
|
|
(GstNetAddressMeta *) gst_buffer_add_meta (buffer,
|
|
GST_NET_ADDRESS_META_INFO, NULL);
|
|
|
|
meta->addr = g_object_ref (addr);
|
|
|
|
return meta;
|
|
}
|
|
|
|
/**
|
|
* gst_buffer_get_net_address_meta:
|
|
* @buffer: a #GstBuffer
|
|
*
|
|
* Find the #GstNetAddressMeta on @buffer.
|
|
*
|
|
* Returns: (transfer none): the #GstNetAddressMeta or %NULL when there
|
|
* is no such metadata on @buffer.
|
|
*/
|
|
GstNetAddressMeta *
|
|
gst_buffer_get_net_address_meta (GstBuffer * buffer)
|
|
{
|
|
return (GstNetAddressMeta *)
|
|
gst_buffer_get_meta (buffer, GST_NET_ADDRESS_META_API_TYPE);
|
|
}
|