Fix seeking next atom after stem with 64-bit length (#1363) (#1378)

This commit is contained in:
Urs Fleisch
2026-07-11 09:03:18 +02:00
committed by GitHub
parent eb698de6e5
commit 834bf0622f

View File

@@ -88,7 +88,7 @@ MP4::Atom::Atom(File *file, int depth)
d->name = header.mid(4, 4);
if(d->name == "stem") {
file->seek(d->length - 8, File::Current);
file->seek(d->offset + d->length);
return;
}