summaryrefslogtreecommitdiffstats
path: root/stream/tv.c
diff options
context:
space:
mode:
authorvoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-29 03:55:12 +0000
committervoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-29 03:55:12 +0000
commit487d4927e2562ea937c455184506134240ba36a4 (patch)
tree7db402d3dbbcec7828cf4b0a0146eefbe48cef49 /stream/tv.c
parentd68160b3c28462db95178eecfd312bf5b6eec58d (diff)
downloadmpv-487d4927e2562ea937c455184506134240ba36a4.tar.bz2
mpv-487d4927e2562ea937c455184506134240ba36a4.tar.xz
Removing forward declarations of routines used only in tv.c
Marking above routines as static Removing unfaithful comment git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23901 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/tv.c')
-rw-r--r--stream/tv.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/stream/tv.c b/stream/tv.c
index d61f4d9cf9..7258d7ff19 100644
--- a/stream/tv.c
+++ b/stream/tv.c
@@ -505,9 +505,7 @@ done:
return 1;
}
-/* ================== STREAM_TV ===================== */
-
-tvi_handle_t *tv_begin(void)
+static tvi_handle_t *tv_begin(void)
{
int i;
tvi_handle_t* h;
@@ -539,7 +537,7 @@ tvi_handle_t *tv_begin(void)
return(NULL);
}
-int tv_uninit(tvi_handle_t *tvh)
+static int tv_uninit(tvi_handle_t *tvh)
{
int res;
if(!tvh) return 1;