From 59f336996dc3fd27129a806fe480a04de6b9aae5 Mon Sep 17 00:00:00 2001 From: Stuart Morgan Date: Thu, 11 Apr 2013 15:14:04 +0100 Subject: [PATCH] Allow the use of cutlists with --video and --mpeg2 --- mythtv/programs/mythtranscode/main.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mythtv/programs/mythtranscode/main.cpp b/mythtv/programs/mythtranscode/main.cpp index 3383fb63d92..987f38455e6 100644 --- a/mythtv/programs/mythtranscode/main.cpp +++ b/mythtv/programs/mythtranscode/main.cpp @@ -633,8 +633,11 @@ int main(int argc, char *argv[]) { void (*update_func)(float) = NULL; int (*check_func)() = NULL; - if (useCutlist && !found_infile) + if (useCutlist) + { + LOG(VB_GENERAL, LOG_INFO, "Honoring the cutlist while transcoding"); pginfo->QueryCutList(deleteMap); + } if (jobID >= 0) { glbl_jobID = jobID;