gst/rtp/gstrtph264depay.c: Set right caps on output buffers.
authorWim Taymans <wim.taymans@gmail.com>
Thu, 15 Feb 2007 12:26:28 +0000 (12:26 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Thu, 15 Feb 2007 12:26:28 +0000 (12:26 +0000)
Original commit message from CVS:
* gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
Set right caps on output buffers.

ChangeLog
gst/rtp/gstrtph264depay.c

index f99bdc9..2444872 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-02-15  Wim Taymans  <wim@fluendo.com>
+
+       * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
+       Set right caps on output buffers.
+
 2007-02-14  Wim Taymans  <wim@fluendo.com>
 
        * gst/rtsp/sdpmessage.c: (sdp_parse_line):
index bea43e0..f52ee81 100644 (file)
@@ -381,8 +381,7 @@ gst_rtp_h264_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
           GST_BUFFER_DATA (outbuf) = outdata;
           GST_BUFFER_MALLOCDATA (outbuf) = outdata;
 
-          gst_buffer_set_caps (outbuf,
-              (GstCaps *) gst_pad_get_pad_template_caps (depayload->srcpad));
+          gst_buffer_set_caps (outbuf, GST_PAD_CAPS (depayload->srcpad));
 
           GST_DEBUG_OBJECT (rtph264depay, "output %d bytes", outsize);
 
@@ -405,8 +404,7 @@ gst_rtp_h264_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
         outdata[2] = 1;
         memcpy (&outdata[3], payload, payload_len);
 
-        gst_buffer_set_caps (outbuf,
-            (GstCaps *) gst_pad_get_pad_template_caps (depayload->srcpad));
+        gst_buffer_set_caps (outbuf, GST_PAD_CAPS (depayload->srcpad));
 
         return outbuf;
       }