gstreamer/libs/gst/net/gstnetaddressmeta.c

92 lines
2.6 KiB
C
Raw Normal View History

2011-11-03 15:46:35 +00:00
/* 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., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
/**
* SECTION:gstnetaddressmeta
* @short_description: Network address metadata
*
* #GstNetAddress can be used to store a network address. #GstNetAddressMeta can
* be used to store a network address in a #GstBuffer so that it network
* elements can track the to and from address of the buffer.
*
* Last reviewed on 2011-11-03 (0.11.2)
*/
#include <string.h>
#include "gstnetaddressmeta.h"
static gboolean
net_address_meta_init (GstNetAddressMeta * meta, gpointer params,
GstBuffer * buffer)
{
meta->addr = NULL;
return TRUE;
}
2011-11-03 15:46:35 +00:00
static void
net_address_meta_transform (GstBuffer * transbuf, GstNetAddressMeta * meta,
GstBuffer * buffer, GQuark type, gpointer data)
2011-11-03 15:46:35 +00:00
{
/* we always copy no matter what transform */
gst_buffer_add_net_address_meta (transbuf, meta->addr);
}
2011-11-03 15:46:35 +00:00
static void
net_address_meta_free (GstNetAddressMeta * meta, GstBuffer * buffer)
{
if (meta->addr)
g_object_unref (meta->addr);
meta->addr = NULL;
2011-11-03 15:46:35 +00:00
}
const GstMetaInfo *
gst_net_address_meta_get_info (void)
{
static const GstMetaInfo *meta_info = NULL;
static const gchar *tags[] = { "origin", NULL };
2011-11-03 15:46:35 +00:00
if (meta_info == NULL) {
meta_info = gst_meta_register ("GstNetAddressMeta", "GstNetAddressMeta",
sizeof (GstNetAddressMeta),
(GstMetaInitFunction) net_address_meta_init,
(GstMetaFreeFunction) net_address_meta_free,
(GstMetaTransformFunction) net_address_meta_transform, tags);
2011-11-03 15:46:35 +00:00
}
return meta_info;
}
GstNetAddressMeta *
gst_buffer_add_net_address_meta (GstBuffer * buffer, GSocketAddress * addr)
2011-11-03 15:46:35 +00:00
{
GstNetAddressMeta *meta;
2011-11-03 15:46:35 +00:00
g_return_val_if_fail (GST_IS_BUFFER (buffer), NULL);
g_return_val_if_fail (G_IS_SOCKET_ADDRESS (addr), NULL);
2011-11-03 15:46:35 +00:00
meta =
(GstNetAddressMeta *) gst_buffer_add_meta (buffer,
GST_NET_ADDRESS_META_INFO, NULL);
2011-11-03 15:46:35 +00:00
meta->addr = g_object_ref (addr);
2011-11-03 15:46:35 +00:00
return meta;
2011-11-03 15:46:35 +00:00
}