mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 18:51:11 +00:00
rtpmux: Set different caps depending on the input
This commit is contained in:
parent
ed0b407038
commit
00791f930b
1 changed files with 10 additions and 2 deletions
|
@ -67,6 +67,8 @@ typedef struct
|
|||
{
|
||||
gboolean have_clock_base;
|
||||
guint clock_base;
|
||||
|
||||
GstCaps *out_caps;
|
||||
} GstRTPMuxPadPrivate;
|
||||
|
||||
static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src",
|
||||
|
@ -248,6 +250,7 @@ free_pad_private (gpointer data, GObject * where_the_object_was)
|
|||
{
|
||||
GstRTPMuxPadPrivate *padpriv = data;
|
||||
|
||||
gst_caps_replace (&padpriv->out_caps, NULL);
|
||||
g_slice_free (GstRTPMuxPadPrivate, padpriv);
|
||||
}
|
||||
|
||||
|
@ -326,6 +329,7 @@ gst_rtp_mux_chain (GstPad * pad, GstBuffer * buffer)
|
|||
{
|
||||
GstRTPMux *rtp_mux;
|
||||
GstFlowReturn ret;
|
||||
GstRTPMuxPadPrivate *padpriv = gst_pad_get_element_private (pad);
|
||||
|
||||
rtp_mux = GST_RTP_MUX (gst_pad_get_parent (pad));
|
||||
|
||||
|
@ -347,7 +351,7 @@ gst_rtp_mux_chain (GstPad * pad, GstBuffer * buffer)
|
|||
GST_BUFFER_SIZE (buffer), rtp_mux->seqnum,
|
||||
gst_rtp_buffer_get_timestamp (buffer));
|
||||
|
||||
gst_buffer_set_caps (buffer, GST_PAD_CAPS (rtp_mux->srcpad));
|
||||
gst_buffer_set_caps (buffer, padpriv->out_caps);
|
||||
|
||||
ret = gst_pad_push (rtp_mux->srcpad, buffer);
|
||||
|
||||
|
@ -383,6 +387,10 @@ gst_rtp_mux_setcaps (GstPad * pad, GstCaps * caps)
|
|||
GST_DEBUG_OBJECT (rtp_mux,
|
||||
"setting caps %" GST_PTR_FORMAT " on src pad..", caps);
|
||||
ret = gst_pad_set_caps (rtp_mux->srcpad, caps);
|
||||
|
||||
if (ret)
|
||||
gst_caps_replace (&padpriv->out_caps, caps);
|
||||
else
|
||||
gst_caps_unref (caps);
|
||||
|
||||
out:
|
||||
|
|
Loading…
Reference in a new issue