Project

General

Profile

Bug #1990

Post processor startdate and enddate error

Added by Zoltan Molnar over 10 years ago. Updated over 10 years ago.

Status:
Fixed
Priority:
Normal
Assignee:
Category:
PVR / DVR
Target version:
-
Start date:
2014-03-11
Due date:
% Done:

100%

Estimated time:
Found in version:
3.9.383
Affected Versions:

Description

Hi!

Incorrect addition of the extra time

now:

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);

correct:

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

History

#1

Updated by Jaroslav Kysela over 10 years ago

  • Status changed from New to Fixed
  • % Done changed from 0 to 100

Applied in changeset commit:tvheadend|8f00f09837a13c92490a4f6d17190b01192cd82d.

Also available in: Atom PDF