26#ifndef TAGLIB_MPEGUTILS_H
27#define TAGLIB_MPEGUTILS_H
31#ifndef DO_NOT_DOCUMENT
48 inline bool isFrameSync(
const ByteVector &bytes,
unsigned int offset = 0)
52 const unsigned char b1 = bytes[offset + 0];
53 const unsigned char b2 = bytes[offset + 1];
54 return (b1 == 0xFF && b2 != 0xFF && (b2 & 0xE0) == 0xE0);
An implementation of TagLib::File with MPEG (MP3) specific methods.
Definition mpegfile.h:45
A namespace for all TagLib related classes and functions.
Definition apefile.h:41