Bug #1220
closedPlayed time and total time of HD recordings is doubled
100%
Description
While viewing HD recordings the LCD shows twice the amount of played and total time.
Updated by jowi24 almost 12 years ago
- Status changed from New to Confirmed
Confirmed, I can reproduce the issue here.
If anyone can provide I patch, I'll be happy to apply it to the repository.
Updated by Ramirez almost 12 years ago
I did some research how this is solved in the GraphLCD plugin and came up with this solution:
Index: vdr-plugin-lcdproc-0.0.10-jw9+git20120625/lcd.c
===================================================================
--- vdr-plugin-lcdproc-0.0.10-jw9+git20120625.orig/lcd.c 2013-01-14 11:08:40.378878002 0100
++ vdr-plugin-lcdproc-0.0.10-jw9+git20120625/lcd.c 2013-01-14 11:10:47.573278952 +0100@ -923,9 +923,11
@
if ( (now.tv_usec < WakeUpCycle) && (replayDvbApi) ) {
char tempbuffer[16];
- replayDvbApi->GetIndex(Current, Total, false); Total=(Total==0)?1:Total;
- sprintf(tempbuffer,"%s",(const char*)IndexToHMSF(Total));
- SetProgress(IndexToHMSF(Current),tempbuffer, (100 * Current) / Total);
+ replayDvbApi->GetIndex(Current, Total, false);
+ Total= (Total==0) ? 1 : Total;
+ double FramesPerSecond = replayDvbApi->FramesPerSecond();
+ sprintf(tempbuffer, "%s", (const char*)IndexToHMSF(Total, false, FramesPerSecond));
+ SetProgress(IndexToHMSF(Current, false, FramesPerSecond), tempbuffer, (100 * Current) / Total);
}
Updated by jowi24 almost 12 years ago
- Status changed from Confirmed to Assigned
- Assignee set to jowi24
- Target version set to 0.0.10-jw10
Great! I'll give it a try this evening and report back.
Updated by jowi24 almost 12 years ago
- Status changed from Assigned to Resolved
Tested an committed in git, will be included in next release.
Updated by Anonymous almost 12 years ago
- Status changed from Resolved to Closed
- % Done changed from 0 to 100
Applied in changeset commit:a68f403de005d6c650fa8d1156927a7c570ab7b6.