mirror of
https://github.com/taglib/taglib.git
synced 2025-06-04 01:28:21 -04:00
MP4 int pair atoms should have flags set to 0
git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@1078611 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
parent
9e9077d1e0
commit
d394317767
@ -270,7 +270,7 @@ MP4::Tag::renderIntPair(const ByteVector &name, MP4::Item &item)
|
||||
ByteVector::fromShort(item.toIntPair().first) +
|
||||
ByteVector::fromShort(item.toIntPair().second) +
|
||||
ByteVector(2, '\0'));
|
||||
return renderData(name, 0x15, data);
|
||||
return renderData(name, 0x00, data);
|
||||
}
|
||||
|
||||
ByteVector
|
||||
@ -280,7 +280,7 @@ MP4::Tag::renderIntPairNoTrailing(const ByteVector &name, MP4::Item &item)
|
||||
data.append(ByteVector(2, '\0') +
|
||||
ByteVector::fromShort(item.toIntPair().first) +
|
||||
ByteVector::fromShort(item.toIntPair().second));
|
||||
return renderData(name, 0x15, data);
|
||||
return renderData(name, 0x00, data);
|
||||
}
|
||||
|
||||
ByteVector
|
||||
|
Loading…
x
Reference in New Issue
Block a user