mirror of
https://github.com/taglib/taglib.git
synced 2025-06-04 01:28:21 -04:00
- Disambiguate uint and ushort references
This commit is contained in:
parent
3b392f2402
commit
3bc123aed6
@ -94,7 +94,7 @@ int IT::Properties::channels() const
|
||||
return d->channels;
|
||||
}
|
||||
|
||||
ushort IT::Properties::lengthInPatterns() const
|
||||
TagLib::ushort IT::Properties::lengthInPatterns() const
|
||||
{
|
||||
return d->lengthInPatterns;
|
||||
}
|
||||
@ -104,37 +104,37 @@ bool IT::Properties::stereo() const
|
||||
return d->flags & Stereo;
|
||||
}
|
||||
|
||||
ushort IT::Properties::instrumentCount() const
|
||||
TagLib::ushort IT::Properties::instrumentCount() const
|
||||
{
|
||||
return d->instrumentCount;
|
||||
}
|
||||
|
||||
ushort IT::Properties::sampleCount() const
|
||||
TagLib::ushort IT::Properties::sampleCount() const
|
||||
{
|
||||
return d->sampleCount;
|
||||
}
|
||||
|
||||
ushort IT::Properties::patternCount() const
|
||||
TagLib::ushort IT::Properties::patternCount() const
|
||||
{
|
||||
return d->patternCount;
|
||||
}
|
||||
|
||||
ushort IT::Properties::version() const
|
||||
TagLib::ushort IT::Properties::version() const
|
||||
{
|
||||
return d->version;
|
||||
}
|
||||
|
||||
ushort IT::Properties::compatibleVersion() const
|
||||
TagLib::ushort IT::Properties::compatibleVersion() const
|
||||
{
|
||||
return d->compatibleVersion;
|
||||
}
|
||||
|
||||
ushort IT::Properties::flags() const
|
||||
TagLib::ushort IT::Properties::flags() const
|
||||
{
|
||||
return d->flags;
|
||||
}
|
||||
|
||||
ushort IT::Properties::special() const
|
||||
TagLib::ushort IT::Properties::special() const
|
||||
{
|
||||
return d->special;
|
||||
}
|
||||
|
@ -70,7 +70,7 @@ int Mod::Properties::channels() const
|
||||
return d->channels;
|
||||
}
|
||||
|
||||
uint Mod::Properties::instrumentCount() const
|
||||
TagLib::uint Mod::Properties::instrumentCount() const
|
||||
{
|
||||
return d->instrumentCount;
|
||||
}
|
||||
|
@ -139,7 +139,7 @@ int RIFF::AIFF::Properties::sampleWidth() const
|
||||
return d->sampleWidth;
|
||||
}
|
||||
|
||||
uint RIFF::AIFF::Properties::sampleFrames() const
|
||||
TagLib::uint RIFF::AIFF::Properties::sampleFrames() const
|
||||
{
|
||||
return d->sampleFrames;
|
||||
}
|
||||
|
@ -104,7 +104,7 @@ int RIFF::WAV::Properties::sampleWidth() const
|
||||
return d->sampleWidth;
|
||||
}
|
||||
|
||||
uint RIFF::WAV::Properties::sampleFrames() const
|
||||
TagLib::uint RIFF::WAV::Properties::sampleFrames() const
|
||||
{
|
||||
return d->sampleFrames;
|
||||
}
|
||||
|
@ -88,7 +88,7 @@ int S3M::Properties::channels() const
|
||||
return d->channels;
|
||||
}
|
||||
|
||||
ushort S3M::Properties::lengthInPatterns() const
|
||||
TagLib::ushort S3M::Properties::lengthInPatterns() const
|
||||
{
|
||||
return d->lengthInPatterns;
|
||||
}
|
||||
@ -98,27 +98,27 @@ bool S3M::Properties::stereo() const
|
||||
return d->stereo;
|
||||
}
|
||||
|
||||
ushort S3M::Properties::sampleCount() const
|
||||
TagLib::ushort S3M::Properties::sampleCount() const
|
||||
{
|
||||
return d->sampleCount;
|
||||
}
|
||||
|
||||
ushort S3M::Properties::patternCount() const
|
||||
TagLib::ushort S3M::Properties::patternCount() const
|
||||
{
|
||||
return d->patternCount;
|
||||
}
|
||||
|
||||
ushort S3M::Properties::flags() const
|
||||
TagLib::ushort S3M::Properties::flags() const
|
||||
{
|
||||
return d->flags;
|
||||
}
|
||||
|
||||
ushort S3M::Properties::trackerVersion() const
|
||||
TagLib::ushort S3M::Properties::trackerVersion() const
|
||||
{
|
||||
return d->trackerVersion;
|
||||
}
|
||||
|
||||
ushort S3M::Properties::fileFormatVersion() const
|
||||
TagLib::ushort S3M::Properties::fileFormatVersion() const
|
||||
{
|
||||
return d->fileFormatVersion;
|
||||
}
|
||||
|
@ -103,7 +103,7 @@ int TrueAudio::Properties::channels() const
|
||||
return d->channels;
|
||||
}
|
||||
|
||||
uint TrueAudio::Properties::sampleFrames() const
|
||||
TagLib::uint TrueAudio::Properties::sampleFrames() const
|
||||
{
|
||||
return d->sampleFrames;
|
||||
}
|
||||
|
@ -117,7 +117,7 @@ int WavPack::Properties::bitsPerSample() const
|
||||
return d->bitsPerSample;
|
||||
}
|
||||
|
||||
uint WavPack::Properties::sampleFrames() const
|
||||
TagLib::uint WavPack::Properties::sampleFrames() const
|
||||
{
|
||||
return d->sampleFrames;
|
||||
}
|
||||
|
@ -84,47 +84,47 @@ int XM::Properties::channels() const
|
||||
return d->channels;
|
||||
}
|
||||
|
||||
ushort XM::Properties::lengthInPatterns() const
|
||||
TagLib::ushort XM::Properties::lengthInPatterns() const
|
||||
{
|
||||
return d->lengthInPatterns;
|
||||
}
|
||||
|
||||
ushort XM::Properties::version() const
|
||||
TagLib::ushort XM::Properties::version() const
|
||||
{
|
||||
return d->version;
|
||||
}
|
||||
|
||||
ushort XM::Properties::restartPosition() const
|
||||
TagLib::ushort XM::Properties::restartPosition() const
|
||||
{
|
||||
return d->restartPosition;
|
||||
}
|
||||
|
||||
ushort XM::Properties::patternCount() const
|
||||
TagLib::ushort XM::Properties::patternCount() const
|
||||
{
|
||||
return d->patternCount;
|
||||
}
|
||||
|
||||
ushort XM::Properties::instrumentCount() const
|
||||
TagLib::ushort XM::Properties::instrumentCount() const
|
||||
{
|
||||
return d->instrumentCount;
|
||||
}
|
||||
|
||||
uint XM::Properties::sampleCount() const
|
||||
TagLib::uint XM::Properties::sampleCount() const
|
||||
{
|
||||
return d->sampleCount;
|
||||
}
|
||||
|
||||
ushort XM::Properties::flags() const
|
||||
TagLib::ushort XM::Properties::flags() const
|
||||
{
|
||||
return d->flags;
|
||||
}
|
||||
|
||||
ushort XM::Properties::tempo() const
|
||||
TagLib::ushort XM::Properties::tempo() const
|
||||
{
|
||||
return d->tempo;
|
||||
}
|
||||
|
||||
ushort XM::Properties::bpmSpeed() const
|
||||
TagLib::ushort XM::Properties::bpmSpeed() const
|
||||
{
|
||||
return d->bpmSpeed;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user