diff options
Diffstat (limited to 'src/metadata/m4a/mp4stsdbox.cpp')
-rw-r--r-- | src/metadata/m4a/mp4stsdbox.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/metadata/m4a/mp4stsdbox.cpp b/src/metadata/m4a/mp4stsdbox.cpp index 6bb8cbe..bd9e8f4 100644 --- a/src/metadata/m4a/mp4stsdbox.cpp +++ b/src/metadata/m4a/mp4stsdbox.cpp @@ -36,7 +36,7 @@ public: MP4::Mp4AudioSampleEntry* audioSampleEntry; }; // class Mp4StsdBoxPrivate -MP4::Mp4StsdBox::Mp4StsdBox( TagLib::File* file, MP4::Fourcc fourcc, TagLib::uint size, long offset ) +MP4::Mp4StsdBox::Mp4StsdBox( TagLib::File* file, MP4::Fourcc fourcc, uint size, long offset ) : Mp4IsoFullBox( file, fourcc, size, offset ) { d = new MP4::Mp4StsdBox::Mp4StsdBoxPrivate(); @@ -58,19 +58,19 @@ void MP4::Mp4StsdBox::parse() if(!mp4file) return; - TagLib::uint totalsize = 12; // initial size of box + uint totalsize = 12; // initial size of box // check for handler type - only parse if 'soun': - if( static_cast<TagLib::uint>(d->handler_type) == 0x736f756e ) + if( static_cast<uint>(d->handler_type) == 0x736f756e ) { // read entry count - TagLib::uint entry_count; + uint entry_count; if(!mp4file->readInt( entry_count )) return; // simply read first entry and skip all following // read size and type - TagLib::uint cursize; + uint cursize; MP4::Fourcc fourcc; if( !mp4file->readSizeAndType( cursize, fourcc )) return; |