summaryrefslogtreecommitdiffstats
path: root/libmpdemux/mp3_hdr.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@symbol.nonexistent.invalid>2008-08-12 13:58:29 +0300
committerUoti Urpala <uau@symbol.nonexistent.invalid>2008-08-12 14:57:12 +0300
commitf6dfaf26f8b513deb8635f75a4115fa04a3c7f4f (patch)
tree594ddee85f97ba4ee9e530ccec6fe2ab18dfe5bb /libmpdemux/mp3_hdr.c
parentcab2e4f5caf454dd5f96eddfaba9c89c5aad51fc (diff)
downloadmpv-f6dfaf26f8b513deb8635f75a4115fa04a3c7f4f.tar.bz2
mpv-f6dfaf26f8b513deb8635f75a4115fa04a3c7f4f.tar.xz
Make various functions static
Diffstat (limited to 'libmpdemux/mp3_hdr.c')
-rw-r--r--libmpdemux/mp3_hdr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/mp3_hdr.c b/libmpdemux/mp3_hdr.c
index 568b67fec0..da1826215c 100644
--- a/libmpdemux/mp3_hdr.c
+++ b/libmpdemux/mp3_hdr.c
@@ -20,7 +20,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 |