From 8e353eec3d1f12e05566565feb2f7fb9f9dbb500 Mon Sep 17 00:00:00 2001 From: Paul Harrison Date: Wed, 27 Feb 2013 13:42:12 +0000 Subject: [PATCH] MythArchive: update mythburn.cpp to work with the new mpeg2video codec name This fixes a bug where the default encoding profile was always chosen even if the file was already a DVD compatible mpeg2 file. Refs #11299 Signed-off-by: Stuart Auchterlonie --- mythplugins/mytharchive/mytharchive/mythburn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mythplugins/mytharchive/mytharchive/mythburn.cpp b/mythplugins/mytharchive/mytharchive/mythburn.cpp index 4b0c15484a9..2016456381e 100644 --- a/mythplugins/mytharchive/mytharchive/mythburn.cpp +++ b/mythplugins/mytharchive/mytharchive/mythburn.cpp @@ -551,7 +551,7 @@ EncoderProfile *MythBurn::getDefaultProfile(ArchiveItem *item) EncoderProfile *profile = NULL; // is the file an mpeg2 file? - if (item->videoCodec.toLower() == "mpeg2video") + if (item->videoCodec.toLower() == "mpeg2video (main)") { // does the file already have a valid DVD resolution? if (gCoreContext->GetSetting("MythArchiveVideoFormat", "pal").toLower()