]> git.sesse.net Git - kdenlive/commitdiff
Prefer the better quality Vorbis encoder, libvorbis, over the native.
authorDan Dennedy <dan@dennedy.org>
Fri, 18 Jun 2010 03:21:29 +0000 (03:21 +0000)
committerDan Dennedy <dan@dennedy.org>
Fri, 18 Jun 2010 03:21:29 +0000 (03:21 +0000)
svn path=/trunk/kdenlive/; revision=4521

src/renderwidget.cpp

index 0c5e1db96a36b648d8a549798d695ea3cfaabdf3..e5979a83bad8b6e7a8a12017256c275a3d9c3031 100644 (file)
@@ -1233,7 +1233,7 @@ void RenderWidget::parseFile(QString exportFile, bool editable)
     QListWidgetItem *item = NULL;
     const QStringList acodecsList = KdenliveSettings::audiocodecs();
     bool replaceVorbisCodec = false;
-    if (!acodecsList.contains("vorbis") && acodecsList.contains("libvorbis")) replaceVorbisCodec = true;
+    if (acodecsList.contains("libvorbis")) replaceVorbisCodec = true;
     bool replaceLibfaacCodec = false;
     if (!acodecsList.contains("aac") && acodecsList.contains("libfaac")) replaceLibfaacCodec = true;