]> git.sesse.net Git - vlc/commitdiff
Qt4 streaming with dshow mrl fix
authorxxcv <xxcv07@gmail.com>
Sat, 19 Dec 2009 07:58:36 +0000 (18:58 +1100)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 21 Dec 2009 15:28:28 +0000 (16:28 +0100)
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
modules/gui/qt4/components/open_panels.cpp

index 72ad0302d8cb2c038ca23299fb622f568e548142..e283227c83e9e27c221d6de2d4a4d3ca97c2d40d 100644 (file)
@@ -1074,9 +1074,9 @@ void CaptureOpenPanel::updateMRL()
         mrl+= " :dshow-vdev=" +
             colon_escape( QString("%1").arg( vdevDshowW->getValue() ) );
         mrl+= " :dshow-adev=" +
-            colon_escape( QString("%1").arg( adevDshowW->getValue() ) );
+            colon_escape( QString("%1").arg( adevDshowW->getValue() ) )+" ";
         if( dshowVSizeLine->isModified() )
-            mrl += " :dshow-size=" + dshowVSizeLine->text();
+            mrl += ":dshow-size=" + dshowVSizeLine->text();
         emit methodChanged( "dshow-caching" );
         break;
 #else