summaryrefslogtreecommitdiffstats
path: root/stream/vcd_read_fbsd.h
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-22 16:32:03 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-22 16:32:03 +0000
commit202fbbecdfd6983d6133eb07567eb82852244ba9 (patch)
tree019adf57508cd88900606f6d66bd5bf257d1ce84 /stream/vcd_read_fbsd.h
parent6676504bbe3ba356585bfc64ee1624ddbecb37ee (diff)
downloadmpv-202fbbecdfd6983d6133eb07567eb82852244ba9.tar.bz2
mpv-202fbbecdfd6983d6133eb07567eb82852244ba9.tar.xz
Mark vcd_get_track_end () and vcd_read_toc() as static.
They are only used within the respective files. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30712 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/vcd_read_fbsd.h')
-rw-r--r--stream/vcd_read_fbsd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/stream/vcd_read_fbsd.h b/stream/vcd_read_fbsd.h
index e60590e1f5..a9555f5b9e 100644
--- a/stream/vcd_read_fbsd.h
+++ b/stream/vcd_read_fbsd.h
@@ -144,7 +144,7 @@ vcd_seek_to_track(mp_vcd_priv_t* vcd, int track)
return VCD_SECTOR_DATA * vcd_get_msf(vcd);
}
-int
+static int
vcd_get_track_end(mp_vcd_priv_t* vcd, int track)
{
if (!read_toc_entry(vcd,
@@ -153,7 +153,7 @@ vcd_get_track_end(mp_vcd_priv_t* vcd, int track)
return VCD_SECTOR_DATA * vcd_get_msf(vcd);
}
-mp_vcd_priv_t*
+static mp_vcd_priv_t*
vcd_read_toc(int fd)
{
struct ioc_toc_header tochdr;