Prevent comparison of signed and unsigned

This commit is contained in:
Martchus 2017-09-21 22:40:17 +02:00
parent cbf63a68aa
commit d968b7cfd1
1 changed files with 1 additions and 1 deletions

View File

@ -429,7 +429,7 @@ TrackHeaderInfo Mp4Track::verifyPresentTrackHeader() const
}
// check whether the existing tkhd atom is not truncated
if(info.additionalDataOffset + 48 <= m_tkhdAtom->dataSize()) {
if(info.additionalDataOffset + 48u <= m_tkhdAtom->dataSize()) {
info.canUseExisting = true;
} else {
info.truncated = true;