summaryrefslogtreecommitdiffstats
path: root/stream/stream_dvd.c
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-12 17:19:56 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-12 17:19:56 +0000
commit6e28f63e36321ad554646b9598f2b1f258620b84 (patch)
treebe9a189de2782508013242fa38554493976351e2 /stream/stream_dvd.c
parent72023719ba723203df4d07b979ea6c476524e187 (diff)
downloadmpv-6e28f63e36321ad554646b9598f2b1f258620b84.tar.bz2
mpv-6e28f63e36321ad554646b9598f2b1f258620b84.tar.xz
consistency fix: STREAM_CTRL_GET_TIME_LENGTH and STREAM_CTRL_GET_CURRENT_TIME now return time in (double) seconds
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20867 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/stream_dvd.c')
-rw-r--r--stream/stream_dvd.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/stream/stream_dvd.c b/stream/stream_dvd.c
index c7a5946457..ddbe637880 100644
--- a/stream/stream_dvd.c
+++ b/stream/stream_dvd.c
@@ -633,7 +633,7 @@ static int control(stream_t *stream,int cmd,void* arg)
{
case STREAM_CTRL_GET_TIME_LENGTH:
{
- *((unsigned int *)arg) = mp_get_titleset_length(d->vts_file, d->tt_srpt, d->cur_title-1);
+ *((double *)arg) = (double) mp_get_titleset_length(d->vts_file, d->tt_srpt, d->cur_title-1)/1000.0;
return 1;
}
case STREAM_CTRL_GET_NUM_CHAPTERS:
@@ -663,8 +663,7 @@ static int control(stream_t *stream,int cmd,void* arg)
if(stream_cache_size > 0) return STREAM_UNSUPORTED;
tm = dvd_get_current_time(stream, 0);
if(tm != -1) {
- tm *= 1000.0f;
- *((unsigned int *)arg) = (unsigned int) tm;
+ *((double *)arg) = tm;
return 1;
}
break;