]> git.sesse.net Git - kdenlive/commitdiff
Disable and hide the "skip_frame" feature for h264, which caused rendering errors...
authorJean-Baptiste Mardelle <jb@kdenlive.org>
Sun, 7 Feb 2010 14:50:05 +0000 (14:50 +0000)
committerJean-Baptiste Mardelle <jb@kdenlive.org>
Sun, 7 Feb 2010 14:50:05 +0000 (14:50 +0000)
http://www.kdenlive.org/mantis/view.php?id=1330

svn path=/trunk/kdenlive/; revision=4298

src/kdenlivesettingsdialog.cpp
src/mainwindow.cpp

index 5744bcdd44aec11e8a171f9bfa16ea66227ee5cc..842e13323a7fb7f8625f075de1c1936bdcbe4f74 100644 (file)
@@ -96,6 +96,10 @@ KdenliveSettingsDialog::KdenliveSettingsDialog(QWidget * parent) :
 
     QWidget *p6 = new QWidget;
     m_configSdl.setupUi(p6);
+    
+    // Disable drop B frames, see Kdenlive issue #1330
+    m_configSdl.groupBox->setHidden(true);
+
     m_page6 = addPage(p6, i18n("Playback"), "media-playback-start");
 
     QWidget *p7 = new QWidget;
index ba410be36966df118b4b98a01ea1b6e7ac3fb806..8dc36617608d20851ae19deb06d9d7dc3fde9e60 100644 (file)
@@ -426,6 +426,9 @@ MainWindow::MainWindow(const QString &MltPath, const KUrl & Url, QWidget *parent
 
     m_monitorManager->initMonitors(m_clipMonitor, m_projectMonitor);
     slotConnectMonitors();
+    
+    // Disable drop B frames, see Kdenlive issue #1330, see also kdenlivesettingsdialog.cpp
+    KdenliveSettings::setDropbframes(false);
 
     // Open or create a file.  Command line argument passed in Url has
     // precedence, then "openlastproject", then just a plain empty file.