From: Pierre Ynard Date: Mon, 25 Jan 2010 17:28:02 +0000 (+0100) Subject: Qt4: don't use TS muxer with RTSP in sout wizard X-Git-Tag: 1.1.0-ff~898 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=6b53f6b72aec497a21772a1d93bec4bc66390270;p=vlc Qt4: don't use TS muxer with RTSP in sout wizard Most RTSP clients expect native RTP and won't cope with Transport Stream. Also, since RTSP takes care of RTP setup, there is little benefit in having a single stream. --- diff --git a/modules/gui/qt4/components/sout/sout_widgets.cpp b/modules/gui/qt4/components/sout/sout_widgets.cpp index c8809a98f6..799fc082a4 100644 --- a/modules/gui/qt4/components/sout/sout_widgets.cpp +++ b/modules/gui/qt4/components/sout/sout_widgets.cpp @@ -270,7 +270,6 @@ QString RTSPDestBox::getMRL( const QString& mux ) SoutMrl m; m.begin( "rtp" ); m.option( "sdp", sdp ); - m.option( "mux", "ts" ); m.end(); return m.getMrl();