[vlc-commits] commit: Qt4: fix convert dialog ( =?UTF-8?Q?R=C3=A9mi=20Denis=2DCourmont=20?=)

git at videolan.org git at videolan.org
Thu Jan 13 19:00:35 CET 2011


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Thu Jan 13 19:59:02 2011 +0200| [3085193997f34b3b91e36fbe54f93fa32da31632] | committer: Rémi Denis-Courmont 

Qt4: fix convert dialog

The mux was not passed in the chain.
This is a regression in f01fe561104e3c62fe77366d3c19b77bf8776a9a.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3085193997f34b3b91e36fbe54f93fa32da31632
---

 modules/gui/qt4/dialogs/convert.cpp |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/modules/gui/qt4/dialogs/convert.cpp b/modules/gui/qt4/dialogs/convert.cpp
index e2de2f8..7ab50c1 100644
--- a/modules/gui/qt4/dialogs/convert.cpp
+++ b/modules/gui/qt4/dialogs/convert.cpp
@@ -138,7 +138,8 @@ void ConvertDialog::close()
         mrl += ":";
         if( displayBox->isChecked() )
             mrl += "duplicate{dst=display,dst=";
-        mrl += "file{dst='" + fileLine->text() + "'}";
+        mrl += "std{access=file,mux=" + profile->getMux()
+             + ",dst='" + fileLine->text() + "'}";
         if( displayBox->isChecked() )
             mrl += "}";
     }



More information about the vlc-commits mailing list