summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-12-04 21:30:24 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-12-04 21:30:24 +0000
commita0ced69860877cd79276d3700d18370ff20ef9ef (patch)
tree42124002169174a795c2dd0db4469b99fc2ba813 /libmpdemux
parent37aa6dfad30be7501871547bf3629de2f745595e (diff)
downloadmpv-a0ced69860877cd79276d3700d18370ff20ef9ef.tar.bz2
mpv-a0ced69860877cd79276d3700d18370ff20ef9ef.tar.xz
dvd_* declarations fixed to matc with open.c
noticed by Tomas Hurka <tom@hukatronic.cz> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8345 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/stream.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmpdemux/stream.c b/libmpdemux/stream.c
index 01e961bf2c..e1ee75eb16 100644
--- a/libmpdemux/stream.c
+++ b/libmpdemux/stream.c
@@ -33,8 +33,8 @@ extern int verbose; // defined in mplayer.c
#endif
#ifdef USE_DVDREAD
-int dvd_read_sector(void* d,void* p2);
-void dvd_seek(void* d,off_t pos);
+int dvd_read_sector(dvd_priv_t *d,unsigned char* data);
+void dvd_seek(dvd_priv_t *d,int pos);
void dvd_close(dvd_priv_t *d);
#endif