2 * Copyright (C) 2011 Wim Taymans <wim.taymans@gmail.com>
4 * gstsample.c: media sample
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: A media sample
25 * @see_also: #GstBuffer, #GstCaps, #GstSegment
27 * A #GstSample is a small object containing data, a type, timing and
28 * extra arbitrary information.
30 #include "gst_private.h"
32 #include "gstsample.h"
40 GstMiniObject mini_object;
48 GType _gst_sample_type = 0;
50 GST_DEFINE_MINI_OBJECT_TYPE (GstSample, gst_sample);
53 _priv_gst_sample_initialize (void)
55 _gst_sample_type = gst_sample_get_type ();
59 _gst_sample_copy (GstSample * sample)
63 copy = gst_sample_new (sample->buffer, sample->caps, &sample->segment,
64 gst_structure_copy (sample->info));
70 _gst_sample_free (GstSample * sample)
72 GST_LOG ("free %p", sample);
75 gst_buffer_unref (sample->buffer);
77 gst_caps_unref (sample->caps);
79 g_slice_free1 (GST_MINI_OBJECT_SIZE (sample), sample);
85 * Free-function: gst_sample_unref
87 * Returns: (transfer full): the new #GstSample. gst_sample_unref()
93 gst_sample_new (GstBuffer * buffer, GstCaps * caps, const GstSegment * segment,
98 sample = g_slice_new0 (GstSample);
100 GST_LOG ("new %p", sample);
102 gst_mini_object_init (GST_MINI_OBJECT_CAST (sample), _gst_sample_type,
105 sample->mini_object.copy = (GstMiniObjectCopyFunction) _gst_sample_copy;
106 sample->mini_object.free = (GstMiniObjectFreeFunction) _gst_sample_free;
108 sample->buffer = buffer ? gst_buffer_ref (buffer) : NULL;
109 sample->caps = caps ? gst_caps_ref (caps) : NULL;
112 gst_segment_copy_into (segment, &sample->segment);
114 gst_segment_init (&sample->segment, GST_FORMAT_TIME);
117 if (!gst_structure_set_parent_refcount (info,
118 &sample->mini_object.refcount))
128 gst_sample_unref (sample);
129 g_warning ("structure is already owned by another object");
135 * gst_sample_get_buffer:
136 * @sample: a #GstSample
138 * Get the buffer associated with @sample
140 * Returns: (transfer none): the buffer of @sample or NULL when there
141 * is no buffer. The buffer remains valid as long as @sample is valid.
144 gst_sample_get_buffer (GstSample * sample)
146 g_return_val_if_fail (GST_IS_SAMPLE (sample), NULL);
148 return sample->buffer;
152 * gst_sample_get_caps:
153 * @sample: a #GstSample
155 * Get the caps associated with @sample
157 * Returns: (transfer none): the caps of @sample or NULL when there
158 * is no caps. The caps remain valid as long as @sample is valid.
161 gst_sample_get_caps (GstSample * sample)
163 g_return_val_if_fail (GST_IS_SAMPLE (sample), NULL);
169 * gst_sample_get_segment:
170 * @sample: a #GstSample
172 * Get the segment associated with @sample
174 * Returns: (transfer none): the segment of @sample.
175 * The segment remains valid as long as @sample is valid.
178 gst_sample_get_segment (GstSample * sample)
180 g_return_val_if_fail (GST_IS_SAMPLE (sample), NULL);
182 return &sample->segment;
186 * gst_sample_get_info:
187 * @sample: a #GstSample
189 * Get extra information associated with @sample.
191 * Returns: (transfer none): the extra info of @sample.
192 * The info remains valid as long as @sample is valid.
195 gst_sample_get_info (GstSample * sample)
197 g_return_val_if_fail (GST_IS_SAMPLE (sample), NULL);