summaryrefslogtreecommitdiffstats
path: root/demux/demux.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-10-29 22:47:25 +0100
committerwm4 <wm4@nowhere>2014-10-29 22:47:25 +0100
commit06bb1e0fc44ef5d4e5138304420274bef513cf44 (patch)
treeee8dd6918a3dc7bbee954f034dc7d0416db24a8b /demux/demux.c
parent71e73b6c8ead34219eb6d16ede74d161f847826c (diff)
downloadmpv-06bb1e0fc44ef5d4e5138304420274bef513cf44.tar.bz2
mpv-06bb1e0fc44ef5d4e5138304420274bef513cf44.tar.xz
demux: fix demux_seek signature
Probably doesn't matter much.
Diffstat (limited to 'demux/demux.c')
-rw-r--r--demux/demux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demux/demux.c b/demux/demux.c
index d8ebde7384..48b1babe35 100644
--- a/demux/demux.c
+++ b/demux/demux.c
@@ -953,7 +953,7 @@ void demux_flush(demuxer_t *demuxer)
pthread_mutex_unlock(&demuxer->in->lock);
}
-int demux_seek(demuxer_t *demuxer, float rel_seek_secs, int flags)
+int demux_seek(demuxer_t *demuxer, double rel_seek_secs, int flags)
{
struct demux_internal *in = demuxer->in;
assert(demuxer == in->d_user);