summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2009-04-01 19:55:26 +0300
committerUoti Urpala <uau@glyph.nonexistent.invalid>2009-04-02 06:51:26 +0300
commitf12c83b85b135c1cb9fb34e978eb0c8051450da8 (patch)
tree793b653cd5bda953f13cf02b1b14c72d9c0c7713 /mplayer.c
parent997f636599a0a8eda56246b535aa9c920b24b67c (diff)
downloadmpv-f12c83b85b135c1cb9fb34e978eb0c8051450da8.tar.bz2
mpv-f12c83b85b135c1cb9fb34e978eb0c8051450da8.tar.xz
Change demuxer_seek_chapter() parameters
Remove the "num_chapters" and "mode" parameters that aren't needed by any callers. Change "float *seek_pts" to "double *". Allocate the string returned via "chapter_name" with talloc.
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mplayer.c b/mplayer.c
index 6e49876afe..42d24f03e6 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -3592,8 +3592,8 @@ if(!mpctx->demuxer)
}
if(dvd_chapter>1) {
- float pts;
- if (demuxer_seek_chapter(mpctx->demuxer, dvd_chapter-1, 1, &pts, NULL, NULL) >= 0 && pts > -1.0)
+ double pts;
+ if (demuxer_seek_chapter(mpctx->demuxer, dvd_chapter-1, &pts, NULL) >= 0 && pts > -1.0)
seek(mpctx, pts, SEEK_ABSOLUTE);
}