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

多媒体编程

开发平台:

Visual C++

  1. #pragma once
  2. class CBaseVideoFilter : public CTransformFilter
  3. {
  4. private:
  5.     HRESULT Receive(IMediaSample* pIn);
  6. HRESULT ReconnectOutput(int w, int h);
  7. // these are private for a reason, don't bother them
  8. DWORD m_win, m_hin, m_arxin, m_aryin;
  9. DWORD m_wout, m_hout, m_arxout, m_aryout;
  10. protected:
  11. CCritSec m_csReceive;
  12. int m_w, m_h, m_arx, m_ary;
  13. HRESULT GetDeliveryBuffer(int w, int h, IMediaSample** ppOut);
  14. HRESULT CopyBuffer(BYTE* pOut, BYTE* pIn, int w, int h, int pitchIn, const GUID& subtype);
  15. HRESULT CopyBuffer(BYTE* pOut, BYTE** ppIn, int w, int h, int pitchIn, const GUID& subtype);
  16. virtual void GetOutputSize(int& w, int& h, int& arx, int& ary) {}
  17. virtual HRESULT Transform(IMediaSample* pIn) = 0;
  18. public:
  19. CBaseVideoFilter(TCHAR* pName, LPUNKNOWN lpunk, HRESULT* phr, REFCLSID clsid);
  20. virtual ~CBaseVideoFilter();
  21. int GetPinCount();
  22. CBasePin* GetPin(int n);
  23.     HRESULT CheckInputType(const CMediaType* mtIn);
  24. HRESULT CheckOutputType(const CMediaType& mtOut);
  25.     HRESULT CheckTransform(const CMediaType* mtIn, const CMediaType* mtOut);
  26.     HRESULT DecideBufferSize(IMemAllocator* pAllocator, ALLOCATOR_PROPERTIES* pProperties);
  27.     HRESULT GetMediaType(int iPosition, CMediaType* pMediaType);
  28. HRESULT SetMediaType(PIN_DIRECTION dir, const CMediaType* pmt);
  29. };
  30. class CBaseVideoInputAllocator : public CMemAllocator
  31. {
  32. CMediaType m_mt;
  33. public:
  34. CBaseVideoInputAllocator(HRESULT* phr);
  35. void SetMediaType(const CMediaType& mt);
  36. STDMETHODIMP GetBuffer(IMediaSample** ppBuffer, REFERENCE_TIME* pStartTime, REFERENCE_TIME* pEndTime, DWORD dwFlags);
  37. };
  38. class CBaseVideoInputPin : public CTransformInputPin
  39. {
  40. CBaseVideoInputAllocator* m_pAllocator;
  41. public:
  42. CBaseVideoInputPin(TCHAR* pObjectName, CBaseVideoFilter* pFilter, HRESULT* phr, LPCWSTR pName);
  43. ~CBaseVideoInputPin();
  44. STDMETHODIMP GetAllocator(IMemAllocator** ppAllocator);
  45. STDMETHODIMP ReceiveConnection(IPin* pConnector, const AM_MEDIA_TYPE* pmt);
  46. };
  47. class CBaseVideoOutputPin : public CTransformOutputPin
  48. {
  49. public:
  50. CBaseVideoOutputPin(TCHAR* pObjectName, CBaseVideoFilter* pFilter, HRESULT* phr, LPCWSTR pName);
  51.     HRESULT CheckMediaType(const CMediaType* mtOut);
  52. };