Skip to content

Commit

Permalink
Allow the use of cutlists with --video and --mpeg2
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartm committed Apr 11, 2013
1 parent d75106b commit 59f3369
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mythtv/programs/mythtranscode/main.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit 59f3369

Please sign in to comment.