From: Dan Dennedy Date: Fri, 18 Jun 2010 03:21:29 +0000 (+0000) Subject: Prefer the better quality Vorbis encoder, libvorbis, over the native. X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=cd3b65414a5311dc3a830413b2d02cc77c0c5f0e;p=kdenlive Prefer the better quality Vorbis encoder, libvorbis, over the native. svn path=/trunk/kdenlive/; revision=4521 --- diff --git a/src/renderwidget.cpp b/src/renderwidget.cpp index 0c5e1db9..e5979a83 100644 --- a/src/renderwidget.cpp +++ b/src/renderwidget.cpp @@ -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;