summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authormosu <mosu@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-10-30 08:42:25 +0000
committermosu <mosu@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-10-30 08:42:25 +0000
commit6bc7b343506b3757cd9888d0cab1226147c916c2 (patch)
treebd678fa6ac8f4a075e84ac04bb2fb74af7860eb8 /libmpdemux
parent666adde0065a7b9d22e61a1a0eaa1145feae7862 (diff)
downloadmpv-6bc7b343506b3757cd9888d0cab1226147c916c2.tar.bz2
mpv-6bc7b343506b3757cd9888d0cab1226147c916c2.tar.xz
Declare a prototype for the function before it is used. Otherwise some compiler versions will "optimize" them away, and linking will fail.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13804 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/demux_ogg.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libmpdemux/demux_ogg.c b/libmpdemux/demux_ogg.c
index db93b8a5a8..e8e5c6fe34 100644
--- a/libmpdemux/demux_ogg.c
+++ b/libmpdemux/demux_ogg.c
@@ -425,6 +425,8 @@ static int demux_ogg_check_lang(char *clang, char *langlist)
return 0;
}
+static int demux_ogg_sub_reverse_id(demuxer_t *demuxer, int id);
+
/// Try to print out comments and also check for LANGUAGE= tag
static void demux_ogg_check_comments(demuxer_t *d, ogg_stream_t *os, int id, vorbis_comment *vc)
{