aboutsummaryrefslogtreecommitdiffstats
path: root/taglib/mpeg/mpegfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'taglib/mpeg/mpegfile.h')
-rw-r--r--taglib/mpeg/mpegfile.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/taglib/mpeg/mpegfile.h b/taglib/mpeg/mpegfile.h
index cff5469d..270cd7ae 100644
--- a/taglib/mpeg/mpegfile.h
+++ b/taglib/mpeg/mpegfile.h
@@ -287,9 +287,15 @@ namespace TagLib {
void read(bool readProperties, Properties::ReadStyle propertiesStyle);
long findID3v2();
long findID3v1();
+ void findLyrics3v2();
void findAPE();
/*!
+ * Extracts a number from a ByteVector
+ */
+ long readNumber(ByteVector vector);
+
+ /*!
* MPEG frames can be recognized by the bit pattern 11111111 111, so the
* first byte is easy to check for, however checking to see if the second byte
* starts with \e 111 is a bit more tricky, hence this member function.