rtsp-media: Don't set the transport mode based on what elements we find
authorSebastian Dröge <sebastian@centricular.com>
Mon, 9 Feb 2015 09:21:50 +0000 (10:21 +0100)
committerSebastian Dröge <sebastian@centricular.com>
Mon, 9 Feb 2015 09:21:50 +0000 (10:21 +0100)
Just print a warning if the one that was set before disagrees with what
elements we found. It must already be set to something before as this
function is called after we received the SDP from ANNOUNCE in RECORD mode,
and we would reject ANNOUNCE if the RECORD flag was not set.

gst/rtsp-server/rtsp-media.c

index 5218b93..4ac89b1 100644 (file)
@@ -1490,7 +1490,6 @@ gst_rtsp_media_collect_streams (GstRTSPMedia * media)
     if (priv->transport_mode != mode)
       GST_WARNING ("found different mode than expected (0x%02x != 0x%02d)",
           priv->transport_mode, mode);
-    gst_rtsp_media_set_transport_mode (media, mode);
   }
 }