3 int mp3_find_sync_word(const unsigned char *buf, int size)
5 const unsigned char *p, *pe;
7 /* find byte-aligned syncword - need 12 (MPEG 1,2) or 11 (MPEG 2.5) matching bits */
8 for (p = buf, pe = buf + size - 3; p <= pe; p++)
14 if ((pn & 0xf8) != 0xf8 || // currently must be MPEG1
15 (pn & 6) == 0) { // invalid layer
19 if ((pn & 0xf0) < 0x20 || (pn & 0xf0) == 0xf0 || // bitrates
20 (pn & 0x0c) != 0) { // not 44kHz