mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-05 22:28:57 +02:00
Remove some unused members
This commit is contained in:
parent
790ade7f37
commit
3c4a15f5cb
@ -31,7 +31,6 @@ updating the ODPCMAliasBlockFile and the GUI of the newly available data.
|
|||||||
ODComputeSummaryTask::ODComputeSummaryTask()
|
ODComputeSummaryTask::ODComputeSummaryTask()
|
||||||
{
|
{
|
||||||
mMaxBlockFiles = 0;
|
mMaxBlockFiles = 0;
|
||||||
mComputedBlockFiles = 0;
|
|
||||||
mHasUpdateRan=false;
|
mHasUpdateRan=false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -83,7 +82,6 @@ void ODComputeSummaryTask::DoSomeInternal()
|
|||||||
success = true;
|
success = true;
|
||||||
blockStartSample = bf->GetStart();
|
blockStartSample = bf->GetStart();
|
||||||
blockEndSample = blockStartSample + bf->GetLength();
|
blockEndSample = blockStartSample + bf->GetLength();
|
||||||
mComputedBlockFiles++;
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -75,7 +75,6 @@ protected:
|
|||||||
ODLock mBlockFilesMutex;
|
ODLock mBlockFilesMutex;
|
||||||
std::vector< std::shared_ptr< ODPCMAliasBlockFile > > mBlockFiles;
|
std::vector< std::shared_ptr< ODPCMAliasBlockFile > > mBlockFiles;
|
||||||
int mMaxBlockFiles;
|
int mMaxBlockFiles;
|
||||||
int mComputedBlockFiles;
|
|
||||||
ODLock mHasUpdateRanMutex;
|
ODLock mHasUpdateRanMutex;
|
||||||
bool mHasUpdateRan;
|
bool mHasUpdateRan;
|
||||||
};
|
};
|
||||||
|
@ -27,7 +27,6 @@ updating the ODDecodeBlockFile and the GUI of the newly available data.
|
|||||||
ODDecodeTask::ODDecodeTask()
|
ODDecodeTask::ODDecodeTask()
|
||||||
{
|
{
|
||||||
mMaxBlockFiles = 0;
|
mMaxBlockFiles = 0;
|
||||||
mComputedBlockFiles = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -74,7 +73,6 @@ void ODDecodeTask::DoSomeInternal()
|
|||||||
success = true;
|
success = true;
|
||||||
blockStartSample = bf->GetStart();
|
blockStartSample = bf->GetStart();
|
||||||
blockEndSample = blockStartSample + bf->GetLength();
|
blockEndSample = blockStartSample + bf->GetLength();
|
||||||
mComputedBlockFiles++;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -93,7 +93,6 @@ protected:
|
|||||||
std::vector<movable_ptr<ODFileDecoder>> mDecoders;
|
std::vector<movable_ptr<ODFileDecoder>> mDecoders;
|
||||||
|
|
||||||
int mMaxBlockFiles;
|
int mMaxBlockFiles;
|
||||||
int mComputedBlockFiles;
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user