summaryrefslogtreecommitdiffstats
path: root/stream/stream_dvd.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@symbol.nonexistent.invalid>2008-08-12 13:58:29 +0300
committerUoti Urpala <uau@symbol.nonexistent.invalid>2008-08-12 14:57:12 +0300
commitf6dfaf26f8b513deb8635f75a4115fa04a3c7f4f (patch)
tree594ddee85f97ba4ee9e530ccec6fe2ab18dfe5bb /stream/stream_dvd.c
parentcab2e4f5caf454dd5f96eddfaba9c89c5aad51fc (diff)
downloadmpv-f6dfaf26f8b513deb8635f75a4115fa04a3c7f4f.tar.bz2
mpv-f6dfaf26f8b513deb8635f75a4115fa04a3c7f4f.tar.xz
Make various functions static
Diffstat (limited to 'stream/stream_dvd.c')
-rw-r--r--stream/stream_dvd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/stream/stream_dvd.c b/stream/stream_dvd.c
index f97a2ff5c8..92b06c67bb 100644
--- a/stream/stream_dvd.c
+++ b/stream/stream_dvd.c
@@ -324,7 +324,7 @@ static int dvd_next_cell(dvd_priv_t *d) {
return next_cell;
}
-int dvd_read_sector(dvd_priv_t *d,unsigned char* data) {
+static int dvd_read_sector(dvd_priv_t *d,unsigned char* data) {
int len;
if(d->packs_left==0) {
@@ -443,7 +443,7 @@ read_next:
return d->cur_pack-1;
}
-void dvd_seek(dvd_priv_t *d,int pos) {
+static void dvd_seek(dvd_priv_t *d,int pos) {
d->packs_left=-1;
d->cur_pack=pos;
@@ -481,7 +481,7 @@ void dvd_seek(dvd_priv_t *d,int pos) {
d->angle_seek=1;
}
-void dvd_close(dvd_priv_t *d) {
+static void dvd_close(dvd_priv_t *d) {
ifoClose(d->vts_file);
ifoClose(d->vmg_file);
DVDCloseFile(d->title);