2 * Copyright (C) 2011 Wim Taymans <wim.taymans@gmail.com>
4 * gstmeta.c: metadata operations
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
16 * You should have received a copy of the GNU Library General Public
17 * License along with this library; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
24 * @short_description: Buffer metadata
26 * Last reviewed on December 17th, 2009 (0.10.26)
28 #include "gst_private.h"
30 #include "gstbuffer.h"
35 static GHashTable *metainfo = NULL;
36 static GStaticRWLock lock = G_STATIC_RW_LOCK_INIT;
39 _priv_gst_meta_initialize (void)
41 metainfo = g_hash_table_new (g_str_hash, g_str_equal);
45 * gst_meta_register_info:
46 * @info: a #GstMetaInfo
48 * Register a #GstMetaInfo. The same @info can be retrieved later with
49 * gst_meta_get_info() by using @impl as the key.
51 * Returns: a #GstMetaInfo that can be used to access metadata.
55 gst_meta_register (const gchar * api, const gchar * impl, gsize size,
56 GstMetaInitFunction init_func, GstMetaFreeFunction free_func,
57 GstMetaCopyFunction copy_func, GstMetaTransformFunction transform_func)
61 g_return_val_if_fail (api != NULL, NULL);
62 g_return_val_if_fail (impl != NULL, NULL);
63 g_return_val_if_fail (size != 0, NULL);
65 info = g_slice_new (GstMetaInfo);
66 info->api = g_quark_from_string (api);
67 info->type = g_pointer_type_register_static (impl);
69 info->init_func = init_func;
70 info->free_func = free_func;
71 info->copy_func = copy_func;
72 info->transform_func = transform_func;
74 GST_DEBUG ("register \"%s\" implementing \"%s\" of size %" G_GSIZE_FORMAT,
77 g_static_rw_lock_writer_lock (&lock);
78 g_hash_table_insert (metainfo, (gpointer) impl, (gpointer) info);
79 g_static_rw_lock_writer_unlock (&lock);
88 * Lookup a previously registered meta info structure by its implementor name
91 * Returns: a #GstMetaInfo with @impl or #NULL when no such metainfo
95 gst_meta_get_info (const gchar * impl)
99 g_return_val_if_fail (impl != NULL, NULL);
101 g_static_rw_lock_reader_lock (&lock);
102 info = g_hash_table_lookup (metainfo, impl);
103 g_static_rw_lock_reader_unlock (&lock);
108 /* Timing metadata */
110 meta_timing_copy (GstBuffer * copybuf, GstMetaTiming * meta,
111 GstBuffer * buffer, gsize offset, gsize size)
113 GstMetaTiming *timing;
115 GST_DEBUG ("trans called from buffer %p to %p, meta %p,"
116 "offset %" G_GSIZE_FORMAT ", size %" G_GSIZE_FORMAT, buffer,
117 copybuf, meta, offset, size);
119 timing = gst_buffer_add_meta_timing (copybuf);
121 /* same offset, copy timestamps */
122 timing->pts = meta->pts;
123 timing->dts = meta->dts;
124 if (size == gst_buffer_get_size (buffer)) {
125 /* same size, copy duration */
126 timing->duration = meta->duration;
129 timing->duration = GST_CLOCK_TIME_NONE;
134 timing->duration = -1;
136 timing->clock_rate = meta->clock_rate;
140 gst_meta_timing_get_info (void)
142 static const GstMetaInfo *meta_info = NULL;
144 if (meta_info == NULL) {
145 meta_info = gst_meta_register ("GstMetaTiming", "GstMetaTiming",
146 sizeof (GstMetaTiming),
147 (GstMetaInitFunction) NULL,
148 (GstMetaFreeFunction) NULL,
149 (GstMetaCopyFunction) meta_timing_copy,
150 (GstMetaTransformFunction) NULL);