mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-21 16:37:12 +01:00
Remove Prefs.h from Resample.h
This commit is contained in:
@@ -23,6 +23,7 @@
|
||||
*//*******************************************************************/
|
||||
|
||||
#include "Resample.h"
|
||||
#include "Prefs.h"
|
||||
|
||||
#include <soxr.h>
|
||||
|
||||
@@ -100,3 +101,11 @@ int Resample::Process(double factor,
|
||||
*inBufferUsed = (int)idone;
|
||||
return (int)odone;
|
||||
}
|
||||
|
||||
void Resample::SetMethod(const bool useBestMethod)
|
||||
{
|
||||
if (useBestMethod)
|
||||
mMethod = gPrefs->Read(GetBestMethodKey(), GetBestMethodDefault());
|
||||
else
|
||||
mMethod = gPrefs->Read(GetFastMethodKey(), GetFastMethodDefault());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user