summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-17 23:27:47 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-17 23:27:47 +0000
commit2dbe8cf340253fb914e793be7282b82d032371a5 (patch)
treee2678f3fb6263e93d7c72c052cdcac1b6fe5f2ef /libmpdemux
parenta37c279d27525ac28936d345f2c216da38e42e90 (diff)
downloadmpv-2dbe8cf340253fb914e793be7282b82d032371a5.tar.bz2
mpv-2dbe8cf340253fb914e793be7282b82d032371a5.tar.xz
Mark demux_ogg_sub_id() as static; it is not used outside of the file.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30625 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/demux_ogg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libmpdemux/demux_ogg.c b/libmpdemux/demux_ogg.c
index 127bde5b48..cc8b65cd43 100644
--- a/libmpdemux/demux_ogg.c
+++ b/libmpdemux/demux_ogg.c
@@ -376,7 +376,8 @@ static int demux_ogg_check_lang(const char *clang, const char *langlist)
\returns The Ogg stream number ( = page serial number) of the newly selected
track.
*/
-int demux_ogg_sub_id(demuxer_t *demuxer, int index) {
+static int demux_ogg_sub_id(demuxer_t *demuxer, int index)
+{
ogg_demuxer_t *ogg_d = demuxer->priv;
return (index < 0) ? index : (index >= ogg_d->n_text) ? -1 : ogg_d->text_ids[index];
}