sample: remove const
authorWim Taymans <wim.taymans@collabora.co.uk>
Thu, 1 Dec 2011 17:49:34 +0000 (18:49 +0100)
committerWim Taymans <wim.taymans@collabora.co.uk>
Thu, 1 Dec 2011 17:49:34 +0000 (18:49 +0100)
The writability of the structure is ensured by the refcount of the parent
miniobject and we're fine if the parent is writable.

gst/gstsample.c
gst/gstsample.h

index 227f9eb12efd27cd0c3e56cec9ecec6d3decf797..3a09460410a327d89bd3d12768e042235b5484b4 100644 (file)
@@ -174,7 +174,7 @@ gst_sample_get_caps (GstSample * sample)
  * Returns: (transfer none): the segment of @sample.
  *  The segment remains valid as long as @sample is valid.
  */
-const GstSegment *
+GstSegment *
 gst_sample_get_segment (GstSample * sample)
 {
   g_return_val_if_fail (GST_IS_SAMPLE (sample), NULL);
index 8b2559506f18b1b4070597574efe7e89812527a1..60c74e431e79d72ecfcfbd7560c948af30c74ae7 100644 (file)
@@ -63,7 +63,7 @@ GstSample *          gst_sample_new           (GstBuffer          *buffer,
 
 GstBuffer *          gst_sample_get_buffer    (GstSample *sample);
 GstCaps *            gst_sample_get_caps      (GstSample *sample);
-const GstSegment *   gst_sample_get_segment   (GstSample *sample);
+GstSegment *         gst_sample_get_segment   (GstSample *sample);
 const GstStructure * gst_sample_get_info      (GstSample *sample);
 
 /* refcounting */