rtpmux: Set our caps on the buffers

This commit is contained in:
Olivier Crête 2008-08-12 12:46:23 -04:00 committed by Tim-Philipp Müller
parent ec63da9366
commit c49f4c87c6

View file

@ -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);