# HG changeset patch # User cehoyos # Date 1267306146 0 # Node ID 355873f64ce712b0b0c30d1f3f5e12591348045d # Parent 5a1ab9923c3af6ac7fc6a4de6e3134696df572d7 Remove unused static function mp_mp3_get_lsf(). diff -r 5a1ab9923c3a -r 355873f64ce7 libmpdemux/mp3_hdr.c --- a/libmpdemux/mp3_hdr.c Sat Feb 27 21:02:44 2010 +0000 +++ b/libmpdemux/mp3_hdr.c Sat Feb 27 21:29:06 2010 +0000 @@ -38,18 +38,6 @@ 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) */