[vlc-commits] Qt4: Linux DVB wants symbol rate in bauds, not kbauds, add three zeroes

Rémi Denis-Courmont git at videolan.org
Thu May 26 15:48:32 CEST 2011


vlc/vlc-1.1 | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Thu May 26 16:47:14 2011 +0300| [43ff972d63d8f641a23f8596e1dd2b0da0b7f857] | committer: Rémi Denis-Courmont

Qt4: Linux DVB wants symbol rate in bauds, not kbauds, add three zeroes

> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=43ff972d63d8f641a23f8596e1dd2b0da0b7f857
---

 modules/gui/qt4/components/open_panels.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/gui/qt4/components/open_panels.cpp b/modules/gui/qt4/components/open_panels.cpp
index 6a71477..70257fa 100644
--- a/modules/gui/qt4/components/open_panels.cpp
+++ b/modules/gui/qt4/components/open_panels.cpp
@@ -1172,7 +1172,7 @@ void CaptureOpenPanel::updateMRL()
 
         mrl += " :dvb-adapter=" + QString::number( dvbCard->value() );
         if( dvbs->isChecked() || dvbc->isChecked() )
-            mrl += " :dvb-srate=" + QString::number( dvbSrate->value() );
+            mrl += " :dvb-srate=" + QString::number( dvbSrate->value() ) + "000";
         else if( dvbt->isChecked() )
             mrl += " :dvb-bandwidth=" +
                 QString::number( dvbBandBox->itemData(



More information about the vlc-commits mailing list