Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
dvr: fix the start and end time for post processor - fixes #1990
  • Loading branch information
perexg committed Aug 14, 2014
1 parent 1eddf45 commit 8f00f09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dvr/dvr_rec.c
Expand Up @@ -626,8 +626,8 @@ dvr_spawn_postproc(dvr_entry_t *de, const char *dvr_postproc)
}

fbasename = tvh_strdupa(de->de_filename);
snprintf(start, sizeof(start), "%"PRItime_t, de->de_start - de->de_start_extra);
snprintf(stop, sizeof(stop), "%"PRItime_t, de->de_stop + de->de_stop_extra);
snprintf(start, sizeof(start), "%"PRItime_t, de->de_start - (60 * de->de_start_extra));
snprintf(stop, sizeof(stop), "%"PRItime_t, de->de_stop + (60 * de->de_stop_extra));

memset(fmap, 0, sizeof(fmap));
fmap['f'] = de->de_filename; /* full path to recoding */
Expand Down

0 comments on commit 8f00f09

Please sign in to comment.