comparison libmpdemux/mp3_hdr.c @ 30572:292ab27ee1fa

Mark mp_mp3_get_lsf() as static; it is not used outside of the file.
author diego
date Wed, 17 Feb 2010 22:14:04 +0000
parents 321e9ea69b9f
children 1cb4281551e2
comparison
equal deleted inserted replaced
30571:7031b2cf61ca 30572:292ab27ee1fa
36 36
37 static long freqs[9] = { 44100, 48000, 32000, // MPEG 1.0 37 static long freqs[9] = { 44100, 48000, 32000, // MPEG 1.0
38 22050, 24000, 16000, // MPEG 2.0 38 22050, 24000, 16000, // MPEG 2.0
39 11025, 12000, 8000}; // MPEG 2.5 39 11025, 12000, 8000}; // MPEG 2.5
40 40
41 int mp_mp3_get_lsf(unsigned char* hbuf){ 41 static int mp_mp3_get_lsf(unsigned char* hbuf){
42 unsigned long newhead = 42 unsigned long newhead =
43 hbuf[0] << 24 | 43 hbuf[0] << 24 |
44 hbuf[1] << 16 | 44 hbuf[1] << 16 |
45 hbuf[2] << 8 | 45 hbuf[2] << 8 |
46 hbuf[3]; 46 hbuf[3];