From: Olivier CrĂȘte Date: Tue, 12 Aug 2008 16:46:23 +0000 (-0400) Subject: [MOVED FROM GST-P-FARSIGHT] Set our caps on the buffers X-Git-Tag: 1.19.3~507^2~19277 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=498635f9b100d3930a8834541382259ebfec6e52;p=platform%2Fupstream%2Fgstreamer.git [MOVED FROM GST-P-FARSIGHT] Set our caps on the buffers --- diff --git a/gst/rtpmux/gstrtpmux.c b/gst/rtpmux/gstrtpmux.c index 14c1a06..9eae4b6 100644 --- a/gst/rtpmux/gstrtpmux.c +++ b/gst/rtpmux/gstrtpmux.c @@ -375,6 +375,8 @@ gst_rtp_mux_chain (GstPad * pad, GstBuffer * buffer) GST_DEBUG_OBJECT (rtp_mux, "Pushing packet size %d, seq=%d, ts=%u", GST_BUFFER_SIZE (buffer), rtp_mux->seqnum - 1); + gst_buffer_set_caps (buffer, GST_PAD_CAPS (rtp_mux->srcpad)); + ret = gst_pad_push (rtp_mux->srcpad, buffer); gst_object_unref (rtp_mux);