summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authorcehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-27 21:29:06 +0000
committercehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-27 21:29:06 +0000
commitc44915814cc211b5527dadc6f56956ec4df68968 (patch)
treecd661e1ce564bd93ed128349ee877936dcec9c04 /libmpdemux
parent827df51f1db5ab8ae774396c5d7fa955908e306e (diff)
downloadmpv-c44915814cc211b5527dadc6f56956ec4df68968.tar.bz2
mpv-c44915814cc211b5527dadc6f56956ec4df68968.tar.xz
Remove unused static function mp_mp3_get_lsf().
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30774 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/mp3_hdr.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/libmpdemux/mp3_hdr.c b/libmpdemux/mp3_hdr.c
index 1e70c17976..fc4bf6d7f7 100644
--- a/libmpdemux/mp3_hdr.c
+++ b/libmpdemux/mp3_hdr.c
@@ -38,18 +38,6 @@ static long freqs[9] = { 44100, 48000, 32000, // MPEG 1.0
22050, 24000, 16000, // MPEG 2.0
11025, 12000, 8000}; // MPEG 2.5
-static int mp_mp3_get_lsf(unsigned char* hbuf){
- unsigned long newhead =
- hbuf[0] << 24 |
- hbuf[1] << 16 |
- hbuf[2] << 8 |
- hbuf[3];
- if( newhead & ((long)1<<20) ) {
- return (newhead & ((long)1<<19)) ? 0x0 : 0x1;
- }
- return 1;
-}
-
/*
* return frame size or -1 (bad frame)
*/