From f6dfaf26f8b513deb8635f75a4115fa04a3c7f4f Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Tue, 12 Aug 2008 13:58:29 +0300 Subject: Make various functions static --- stream/stream_dvd.c | 6 +++--- stream/tv.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'stream') 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); diff --git a/stream/tv.c b/stream/tv.c index 58321d5302..641737a9f1 100644 --- a/stream/tv.c +++ b/stream/tv.c @@ -337,7 +337,7 @@ int tv_set_norm(tvi_handle_t *tvh, char* norm) return 1; } -int tv_set_norm_i(tvi_handle_t *tvh, int norm) +static int tv_set_norm_i(tvi_handle_t *tvh, int norm) { tvh->norm = norm; -- cgit v1.2.3