diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-02-17 22:14:04 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-02-17 22:14:04 +0000 |
commit | 69429048a21918a0e109ba106ad2161c4a413f03 (patch) | |
tree | 8f1388cbc6c41473be85e67872ec150af3aa8c4b /libmpdemux | |
parent | 8615d008344b47523ac6aae2e7bda66762119bd9 (diff) | |
download | mpv-69429048a21918a0e109ba106ad2161c4a413f03.tar.bz2 mpv-69429048a21918a0e109ba106ad2161c4a413f03.tar.xz |
Mark mp_mp3_get_lsf() as static; it is not used outside of the file.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30614 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r-- | libmpdemux/mp3_hdr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/mp3_hdr.c b/libmpdemux/mp3_hdr.c index 0266469cb9..ee7d8211df 100644 --- a/libmpdemux/mp3_hdr.c +++ b/libmpdemux/mp3_hdr.c @@ -38,7 +38,7 @@ static long freqs[9] = { 44100, 48000, 32000, // MPEG 1.0 22050, 24000, 16000, // MPEG 2.0 11025, 12000, 8000}; // MPEG 2.5 -int mp_mp3_get_lsf(unsigned char* hbuf){ +static int mp_mp3_get_lsf(unsigned char* hbuf){ unsigned long newhead = hbuf[0] << 24 | hbuf[1] << 16 | |