1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-05 14:18:53 +02:00

Remove some unused members

This commit is contained in:
Paul Licameli 2016-12-26 14:53:59 -05:00
parent 790ade7f37
commit 3c4a15f5cb
4 changed files with 0 additions and 6 deletions

View File

@ -31,7 +31,6 @@ updating the ODPCMAliasBlockFile and the GUI of the newly available data.
ODComputeSummaryTask::ODComputeSummaryTask()
{
mMaxBlockFiles = 0;
mComputedBlockFiles = 0;
mHasUpdateRan=false;
}
@ -83,7 +82,6 @@ void ODComputeSummaryTask::DoSomeInternal()
success = true;
blockStartSample = bf->GetStart();
blockEndSample = blockStartSample + bf->GetLength();
mComputedBlockFiles++;
}
else
{

View File

@ -75,7 +75,6 @@ protected:
ODLock mBlockFilesMutex;
std::vector< std::shared_ptr< ODPCMAliasBlockFile > > mBlockFiles;
int mMaxBlockFiles;
int mComputedBlockFiles;
ODLock mHasUpdateRanMutex;
bool mHasUpdateRan;
};

View File

@ -27,7 +27,6 @@ updating the ODDecodeBlockFile and the GUI of the newly available data.
ODDecodeTask::ODDecodeTask()
{
mMaxBlockFiles = 0;
mComputedBlockFiles = 0;
}
@ -74,7 +73,6 @@ void ODDecodeTask::DoSomeInternal()
success = true;
blockStartSample = bf->GetStart();
blockEndSample = blockStartSample + bf->GetLength();
mComputedBlockFiles++;
}
}
else

View File

@ -93,7 +93,6 @@ protected:
std::vector<movable_ptr<ODFileDecoder>> mDecoders;
int mMaxBlockFiles;
int mComputedBlockFiles;
};