mirror of
https://github.com/taglib/taglib.git
synced 2025-07-18 13:04:18 -04:00
Update interface. Just needs more documentation now.
git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@340209 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
@ -181,7 +181,7 @@ void Footer::parse(const ByteVector &data)
|
||||
d->itemCount = data.mid(16, 4).toUInt(false);
|
||||
|
||||
// Read the flags
|
||||
std::bitset<32> flags(data.mid(8, 4).toUInt(false));
|
||||
std::bitset<32> flags(data.mid(20, 4).toUInt(false));
|
||||
|
||||
d->headerPresent = flags[31];
|
||||
d->footerPresent = !flags[30];
|
||||
|
Reference in New Issue
Block a user