mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
rtspsrc: Only do RTX when using a feedback profile
This commit is contained in:
parent
9d22ad421b
commit
d08f488598
1 changed files with 3 additions and 0 deletions
|
@ -3204,6 +3204,9 @@ add_retransmission (GstRTSPSrc * src, GstRTSPTransport * transport)
|
|||
|
||||
if (transport->trans != GST_RTSP_TRANS_RTP)
|
||||
return;
|
||||
if (transport->profile != GST_RTSP_PROFILE_AVP &&
|
||||
transport->profile != GST_RTSP_PROFILE_AVPF)
|
||||
return;
|
||||
|
||||
signal_id = g_signal_lookup ("request-aux-receiver",
|
||||
G_OBJECT_TYPE (src->manager));
|
||||
|
|
Loading…
Reference in a new issue