ef6f53326c93fcf0e55fbfa4ee4b85f8f8a95563
[platform/upstream/gstreamer.git] / gst / gstmeta.c
1 /* Gnome-Streamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20
21 #include <gst/gstmeta.h>
22 #include <gst/gsttrace.h>
23
24
25 GstMeta *gst_meta_new_size(gint size) {
26   GstMeta *meta;
27
28   meta = g_malloc(size);
29   gst_meta_ref(meta);
30
31   return meta;
32 }
33
34 void gst_meta_ref(GstMeta *meta) {
35   g_return_if_fail(meta != NULL);
36
37   gst_trace_add_entry(NULL,0,meta,"ref meta");
38   meta->refcount++;
39 }
40
41 void gst_meta_unref(GstMeta *meta) {
42   g_return_if_fail(meta != NULL);
43
44   gst_trace_add_entry(NULL,0,meta,"unref meta");
45   meta->refcount--;
46
47   if (meta->refcount == 0) {
48 //    gst_trace_add_entry(NULL,0,meta,"destroy meta");
49     g_free(meta);
50 //    g_print("freeing metadata\n");
51   }
52 }
53
54
55 GstMeta *gst_meta_cow(GstMeta *meta) {
56   g_return_if_fail(meta != NULL);
57 }