diff options
Diffstat (limited to 'src/metadata/m4a/mp4ilstbox.cpp')
-rw-r--r-- | src/metadata/m4a/mp4ilstbox.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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<MP4::File*>( file() ); - TagLib::uint totalsize = 8; + uint totalsize = 8; // parse all contained boxes - TagLib::uint size; + uint size; MP4::Fourcc fourcc; #if 0 |