mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 07:46:38 +00:00
rtpsession: forward caps
This commit is contained in:
parent
6ac5e1ae16
commit
68588c3f18
1 changed files with 2 additions and 3 deletions
|
@ -1490,7 +1490,7 @@ gst_rtp_session_sink_setcaps (GstPad * pad, GstRtpSession * rtpsession,
|
||||||
gst_rtp_session_cache_caps (rtpsession, caps);
|
gst_rtp_session_cache_caps (rtpsession, caps);
|
||||||
GST_RTP_SESSION_UNLOCK (rtpsession);
|
GST_RTP_SESSION_UNLOCK (rtpsession);
|
||||||
|
|
||||||
return TRUE;
|
return gst_pad_set_caps (rtpsession->recv_rtp_src, caps);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* receive a packet from a sender, send it to the RTP session manager and
|
/* receive a packet from a sender, send it to the RTP session manager and
|
||||||
|
@ -1793,8 +1793,7 @@ gst_rtp_session_setcaps_send_rtp (GstPad * pad, GstRtpSession * rtpsession,
|
||||||
GST_DEBUG_OBJECT (rtpsession, "setting internal SSRC to %08x", ssrc);
|
GST_DEBUG_OBJECT (rtpsession, "setting internal SSRC to %08x", ssrc);
|
||||||
rtp_session_set_internal_ssrc (priv->session, ssrc);
|
rtp_session_set_internal_ssrc (priv->session, ssrc);
|
||||||
}
|
}
|
||||||
|
return gst_pad_set_caps (rtpsession->send_rtp_src, caps);
|
||||||
return TRUE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Recieve an RTP packet or a list of packets to be send to the receivers,
|
/* Recieve an RTP packet or a list of packets to be send to the receivers,
|
||||||
|
|
Loading…
Reference in a new issue