Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/sanear.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Interfaces.h')
-rw-r--r--src/Interfaces.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Interfaces.h b/src/Interfaces.h
index 7eb0f63..a83b5c5 100644
--- a/src/Interfaces.h
+++ b/src/Interfaces.h
@@ -41,6 +41,14 @@ namespace SaneAudioRenderer
STDMETHOD_(void, SetIgnoreSystemChannelMixer)(BOOL bEnable) = 0;
STDMETHOD_(BOOL, GetIgnoreSystemChannelMixer)() = 0;
+
+ enum
+ {
+ TIMESTRETCH_METHOD_SOLA = 0,
+ TIMESTRETCH_METHOD_PHASE_VOCODER = 1,
+ };
+ STDMETHOD(SetTimestretchSettings)(UINT32 uTimestretchMethod) = 0;
+ STDMETHOD_(void, GetTimestretchSettings)(UINT32* puTimestretchMethod) = 0;
};
_COM_SMARTPTR_TYPEDEF(ISettings, __uuidof(ISettings));