From 2eda7f08c699160b1f42a0a66156559fa5479778 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 12 Apr 2024 12:42:48 +0900 Subject: Add support for taglib 2 Signed-off-by: Michele Calgaro --- src/metadata/m4a/mp4ilstbox.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/metadata/m4a/mp4ilstbox.cpp') diff --git a/src/metadata/m4a/mp4ilstbox.cpp b/src/metadata/m4a/mp4ilstbox.cpp index 1d5ae9a..81b6e7a 100644 --- a/src/metadata/m4a/mp4ilstbox.cpp +++ b/src/metadata/m4a/mp4ilstbox.cpp @@ -36,7 +36,7 @@ public: MP4::BoxFactory boxfactory; }; // class Mp4IlstBoxPrivate -MP4::Mp4IlstBox::Mp4IlstBox( TagLib::File* file, MP4::Fourcc fourcc, TagLib::uint size, long offset ) +MP4::Mp4IlstBox::Mp4IlstBox( TagLib::File* file, MP4::Fourcc fourcc, uint size, long offset ) : Mp4IsoBox( file, fourcc, size, offset ) { d = new MP4::Mp4IlstBox::Mp4IlstBoxPrivate(); @@ -62,9 +62,9 @@ void MP4::Mp4IlstBox::parse() TagLib::MP4::File* mp4file = static_cast( file() ); - TagLib::uint totalsize = 8; + uint totalsize = 8; // parse all contained boxes - TagLib::uint size; + uint size; MP4::Fourcc fourcc; #if 0 -- cgit v1.2.1