summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
Diffstat (limited to 'stream')
-rw-r--r--stream/stream_dvdnav.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/stream/stream_dvdnav.c b/stream/stream_dvdnav.c
index 5c851c178a..e2ae4d7053 100644
--- a/stream/stream_dvdnav.c
+++ b/stream/stream_dvdnav.c
@@ -350,10 +350,12 @@ static int control(stream_t *stream, int cmd, void* arg) {
static void identify_chapters(dvdnav_t *nav, uint32_t title)
{
- uint64_t *parts=NULL;
+ uint64_t *parts=NULL, duration=0;
uint32_t n, i, t;
- n = dvdnav_describe_title_chapters(nav, title, &parts);
+ n = dvdnav_describe_title_chapters(nav, title, &parts, &duration);
if(parts) {
+ t = duration / 90;
+ mp_msg(MSGT_IDENTIFY, MSGL_V, "ID_DVD_TITLE_%d_LENGTH=%d.%03d\n", title, t / 1000, t % 1000);
mp_msg(MSGT_IDENTIFY, MSGL_INFO, "TITLE %u, CHAPTERS: ", title);
for(i=0; i<n; i++) {
t = parts[i] / 90000;