AudioSwitcher.h
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:3k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. // Copyright 2003 Gabest.
  2. // http://www.gabest.org
  3. //
  4. // This program is free software; you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation; either version 2 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // This program is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. // GNU General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU General Public License
  15. // along with this program; if not, write to the Free Software
  16. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA, or visit
  17. // http://www.gnu.org/copyleft/gpl.html
  18. #pragma once
  19. #include "StreamSwitcher.h"
  20. [uuid("CEDB2890-53AE-4231-91A3-B0AAFCD1DBDE")]
  21. interface IAudioSwitcherFilter : public IUnknown
  22. {
  23. STDMETHOD(GetInputSpeakerConfig) (DWORD* pdwChannelMask) = 0;
  24.     STDMETHOD(GetSpeakerConfig) (bool* pfCustomChannelMapping, DWORD pSpeakerToChannelMap[18][18]) = 0;
  25.     STDMETHOD(SetSpeakerConfig) (bool fCustomChannelMapping, DWORD pSpeakerToChannelMap[18][18]) = 0;
  26.     STDMETHOD_(int, GetNumberOfInputChannels) () = 0;
  27. STDMETHOD_(bool, IsDownSamplingTo441Enabled) () = 0;
  28. STDMETHOD(EnableDownSamplingTo441) (bool fEnable) = 0;
  29. STDMETHOD_(REFERENCE_TIME, GetAudioTimeShift) () = 0;
  30. STDMETHOD(SetAudioTimeShift) (REFERENCE_TIME rtAudioTimeShift) = 0;
  31. };
  32. class AudioStreamResampler;
  33. [uuid("18C16B08-6497-420e-AD14-22D21C2CEAB7")]
  34. class CAudioSwitcherFilter : public CStreamSwitcherFilter, public IAudioSwitcherFilter
  35. {
  36. typedef struct {DWORD Speaker, Channel;} ChMap;
  37. CArray<ChMap> m_chs[18];
  38. bool m_fCustomChannelMapping;
  39. DWORD m_pSpeakerToChannelMap[18][18];
  40. bool m_fDownSampleTo441;
  41. REFERENCE_TIME m_rtAudioTimeShift;
  42. CAutoPtrArray<AudioStreamResampler> m_pResamplers;
  43. REFERENCE_TIME m_rtNextStart, m_rtNextStop;
  44. public:
  45. CAudioSwitcherFilter(LPUNKNOWN lpunk, HRESULT* phr);
  46. DECLARE_IUNKNOWN
  47.     STDMETHODIMP NonDelegatingQueryInterface(REFIID riid, void** ppv);
  48. HRESULT CheckMediaType(const CMediaType* pmt);
  49. HRESULT Transform(IMediaSample* pIn, IMediaSample* pOut);
  50. CMediaType CreateNewOutputMediaType(CMediaType mt, long& cbBuffer);
  51. void OnNewOutputMediaType(const CMediaType& mtIn, const CMediaType& mtOut);
  52. // IAudioSwitcherFilter
  53. STDMETHODIMP GetInputSpeakerConfig(DWORD* pdwChannelMask);
  54.     STDMETHODIMP GetSpeakerConfig(bool* pfCustomChannelMapping, DWORD pSpeakerToChannelMap[18][18]);
  55.     STDMETHODIMP SetSpeakerConfig(bool fCustomChannelMapping, DWORD pSpeakerToChannelMap[18][18]);
  56.     STDMETHODIMP_(int) GetNumberOfInputChannels();
  57. STDMETHODIMP_(bool) IsDownSamplingTo441Enabled();
  58. STDMETHODIMP EnableDownSamplingTo441(bool fEnable);
  59. STDMETHODIMP_(REFERENCE_TIME) GetAudioTimeShift();
  60. STDMETHODIMP SetAudioTimeShift(REFERENCE_TIME rtAudioTimeShift);
  61. };