mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-16 15:57:52 +01:00
Remove many mentions of sampleCount with auto and decltype...
... This makes much code agnostic about how other things (functions and arguments) are typed. Many of these neeed to become size_t instead of sampleCount.
This commit is contained in:
@@ -491,7 +491,7 @@ int ExportPCM::Export(AudacityProject *project,
|
||||
|
||||
while (updateResult == eProgressSuccess) {
|
||||
sf_count_t samplesWritten;
|
||||
sampleCount numSamples = mixer->Process(maxBlockLen);
|
||||
auto numSamples = mixer->Process(maxBlockLen);
|
||||
|
||||
if (numSamples == 0)
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user