2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000 Wim Taymans <wtay@chello.be>
5 * gstsample.h: Header for GstSample object
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
17 * You should have received a copy of the GNU Library General Public
18 * License along with this library; if not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
24 #ifndef __GST_SAMPLE_H__
25 #define __GST_SAMPLE_H__
27 #include <gst/gstbuffer.h>
28 #include <gst/gstcaps.h>
29 #include <gst/gstsegment.h>
33 extern GType _gst_sample_type;
35 #define GST_TYPE_SAMPLE (_gst_sample_type)
36 #define GST_IS_SAMPLE(obj) (GST_IS_MINI_OBJECT_TYPE(obj, GST_TYPE_SAMPLE))
37 #define GST_SAMPLE_CAST(obj) ((GstSample *)obj)
38 #define GST_SAMPLE(obj) (GST_SAMPLE_CAST(obj))
43 * The opaque structure of a #GstSample. A sample contains a typed memory
44 * block and the associated timing information. It is mainly used to
45 * exchange buffers with and application.
47 typedef struct _GstSample GstSample;
50 * GST_SAMPLE_TRACE_NAME:
52 * The name used for tracing memory allocations.
54 #define GST_SAMPLE_TRACE_NAME "GstSample"
56 GType gst_sample_get_type (void);
59 GstSample * gst_sample_new (GstBuffer *buffer,
61 const GstSegment *segment,
64 GstBuffer * gst_sample_get_buffer (GstSample *sample);
65 GstCaps * gst_sample_get_caps (GstSample *sample);
66 GstSegment * gst_sample_get_segment (GstSample *sample);
67 const GstStructure * gst_sample_get_info (GstSample *sample);
72 * @sample: a #GstSample
74 * Increases the refcount of the given sample by one.
76 * Returns: (transfer full): @sample
79 G_INLINE_FUNC GstSample * gst_sample_ref (GstSample * sample);
82 static inline GstSample *
83 gst_sample_ref (GstSample * sample)
85 return GST_SAMPLE_CAST (gst_mini_object_ref (GST_MINI_OBJECT_CAST (
91 * @sample: (transfer full): a #GstSample
93 * Decreases the refcount of the sample. If the refcount reaches 0, the
94 * sample will be freed.
97 G_INLINE_FUNC void gst_sample_unref (GstSample * sample);
101 gst_sample_unref (GstSample * sample)
103 gst_mini_object_unref (GST_MINI_OBJECT_CAST (sample));
107 * gst_value_set_sample:
108 * @v: a #GValue to receive the data
109 * @b: (transfer none): a #GstSample to assign to the GstValue
111 * Sets @b as the value of @v. Caller retains reference to sample.
113 #define gst_value_set_sample(v,b) g_value_set_boxed((v),(b))
115 * gst_value_take_sample:
116 * @v: a #GValue to receive the data
117 * @b: (transfer full): a #GstSample to assign to the GstValue
119 * Sets @b as the value of @v. Caller gives away reference to sample.
121 #define gst_value_take_sample(v,b) g_value_take_boxed(v,(b))
123 * gst_value_get_sample:
124 * @v: a #GValue to query
126 * Receives a #GstSample as the value of @v. Does not return a reference to
127 * the sample, so the pointer is only valid for as long as the caller owns
130 * Returns: (transfer none): sample
132 #define gst_value_get_sample(v) GST_SAMPLE_CAST (g_value_get_boxed(v))
136 #endif /* __GST_SAMPLE_H__ */