1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-15 07:01:18 +02:00

Comments where casting to sampleCount from other library typedefs

This commit is contained in:
Paul Licameli
2016-09-06 09:19:04 -04:00
parent c9a9ad6220
commit d23c20c5d1
4 changed files with 9 additions and 4 deletions

View File

@@ -367,7 +367,8 @@ int PCMImportFileHandle::Import(TrackFactory *trackFactory,
channels.begin()->get()->SetLinked(true);
}
auto fileTotalFrames = (sampleCount)mInfo.frames;
auto fileTotalFrames =
(sampleCount)mInfo.frames; // convert from sf_count_t
auto maxBlockSize = channels.begin()->get()->GetMaxBlockSize();
int updateResult = false;