diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-02-17 22:11:05 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-02-17 22:11:05 +0000 |
commit | 8615d008344b47523ac6aae2e7bda66762119bd9 (patch) | |
tree | a5eaadc06edd67ffc9cd4b9e28b1ce34ff5eb450 /libmpdemux | |
parent | eafb70de50b3ff32d6f99c51b425a885377e1e16 (diff) | |
download | mpv-8615d008344b47523ac6aae2e7bda66762119bd9.tar.bz2 mpv-8615d008344b47523ac6aae2e7bda66762119bd9.tar.xz |
Mark mov_build_index() as static; it is not used outside of the file.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30613 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r-- | libmpdemux/demux_mov.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/demux_mov.c b/libmpdemux/demux_mov.c index a1a250c05f..3848cf1903 100644 --- a/libmpdemux/demux_mov.c +++ b/libmpdemux/demux_mov.c @@ -165,7 +165,7 @@ typedef struct { void* desc; // image/sound/etc description (pointer to ImageDescription etc) } mov_track_t; -void mov_build_index(mov_track_t* trak,int timescale){ +static void mov_build_index(mov_track_t* trak,int timescale){ int i,j,s; int last=trak->chunks_size; unsigned int pts=0; |