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

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnderground78 <underground78@users.sourceforge.net>2013-06-01 20:47:06 +0400
committerUnderground78 <underground78@users.sourceforge.net>2013-06-19 00:18:20 +0400
commit7dc747e4d3a0043c863583475ec49e4be4c260ca (patch)
tree974b9ddd765b5333f2fd235bfeb1a61ebfdbc9a3 /src/filters/switcher/AudioSwitcher/AudioSwitcher.h
parentc5fb9c73b7f622300cf5d36346fdf8872d79cf2b (diff)
Use "PURE" instead of "= 0" for COM interfaces.
Diffstat (limited to 'src/filters/switcher/AudioSwitcher/AudioSwitcher.h')
-rw-r--r--src/filters/switcher/AudioSwitcher/AudioSwitcher.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/filters/switcher/AudioSwitcher/AudioSwitcher.h b/src/filters/switcher/AudioSwitcher/AudioSwitcher.h
index 552b4f738..c335c5f28 100644
--- a/src/filters/switcher/AudioSwitcher/AudioSwitcher.h
+++ b/src/filters/switcher/AudioSwitcher/AudioSwitcher.h
@@ -30,20 +30,20 @@
interface __declspec(uuid("CEDB2890-53AE-4231-91A3-B0AAFCD1DBDE"))
IAudioSwitcherFilter :
public IUnknown {
- STDMETHOD(GetInputSpeakerConfig)(DWORD * pdwChannelMask) = 0;
- STDMETHOD(GetSpeakerConfig)(bool * pfCustomChannelMapping, DWORD pSpeakerToChannelMap[AS_MAX_CHANNELS][AS_MAX_CHANNELS]) = 0;
- STDMETHOD(SetSpeakerConfig)(bool fCustomChannelMapping, DWORD pSpeakerToChannelMap[AS_MAX_CHANNELS][AS_MAX_CHANNELS]) = 0;
- STDMETHOD_(int, GetNumberOfInputChannels)() = 0;
- STDMETHOD_(bool, IsDownSamplingTo441Enabled)() = 0;
- STDMETHOD(EnableDownSamplingTo441)(bool fEnable) = 0;
- STDMETHOD_(REFERENCE_TIME, GetAudioTimeShift)() = 0;
- STDMETHOD(SetAudioTimeShift)(REFERENCE_TIME rtAudioTimeShift) = 0;
+ STDMETHOD(GetInputSpeakerConfig)(DWORD * pdwChannelMask) PURE;
+ STDMETHOD(GetSpeakerConfig)(bool * pfCustomChannelMapping, DWORD pSpeakerToChannelMap[AS_MAX_CHANNELS][AS_MAX_CHANNELS]) PURE;
+ STDMETHOD(SetSpeakerConfig)(bool fCustomChannelMapping, DWORD pSpeakerToChannelMap[AS_MAX_CHANNELS][AS_MAX_CHANNELS]) PURE;
+ STDMETHOD_(int, GetNumberOfInputChannels)() PURE;
+ STDMETHOD_(bool, IsDownSamplingTo441Enabled)() PURE;
+ STDMETHOD(EnableDownSamplingTo441)(bool fEnable) PURE;
+ STDMETHOD_(REFERENCE_TIME, GetAudioTimeShift)() PURE;
+ STDMETHOD(SetAudioTimeShift)(REFERENCE_TIME rtAudioTimeShift) PURE;
// Deprecated
- STDMETHOD(GetNormalizeBoost)(bool & fNormalize, bool & fNormalizeRecover, float & boost_dB) = 0;
+ STDMETHOD(GetNormalizeBoost)(bool & fNormalize, bool & fNormalizeRecover, float & boost_dB) PURE;
// Deprecated
- STDMETHOD(SetNormalizeBoost)(bool fNormalize, bool fNormalizeRecover, float boost_dB) = 0;
- STDMETHOD(GetNormalizeBoost2)(bool & fNormalize, UINT & nMaxNormFactor, bool & fNormalizeRecover, UINT & nBoost) = 0;
- STDMETHOD(SetNormalizeBoost2)(bool fNormalize, UINT nMaxNormFactor, bool fNormalizeRecover, UINT nBoost) = 0;
+ STDMETHOD(SetNormalizeBoost)(bool fNormalize, bool fNormalizeRecover, float boost_dB) PURE;
+ STDMETHOD(GetNormalizeBoost2)(bool & fNormalize, UINT & nMaxNormFactor, bool & fNormalizeRecover, UINT & nBoost) PURE;
+ STDMETHOD(SetNormalizeBoost2)(bool fNormalize, UINT nMaxNormFactor, bool fNormalizeRecover, UINT nBoost) PURE;
};
class AudioStreamResampler;