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

多媒体编程

开发平台:

Visual C++

  1. /* 
  2.  * Copyright (C) 2003-2005 Gabest
  3.  * http://www.gabest.org
  4.  *
  5.  *  This Program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2, or (at your option)
  8.  *  any later version.
  9.  *   
  10.  *  This Program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13.  *  GNU General Public License for more details.
  14.  *   
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with GNU Make; see the file COPYING.  If not, write to
  17.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  18.  *  http://www.gnu.org/copyleft/gpl.html
  19.  *
  20.  */
  21. #pragma once
  22. #include <atlbase.h>
  23. #include "......DSUtilDSUtil.h"
  24. class CStreamDriveThruInputPin : public CBasePin
  25. {
  26. CComQIPtr<IAsyncReader> m_pAsyncReader;
  27. public:
  28. CStreamDriveThruInputPin(TCHAR* pName, CBaseFilter* pFilter, CCritSec* pLock, HRESULT* phr);
  29. virtual ~CStreamDriveThruInputPin();
  30. HRESULT GetAsyncReader(IAsyncReader** ppAsyncReader);
  31. DECLARE_IUNKNOWN;
  32.     STDMETHODIMP NonDelegatingQueryInterface(REFIID riid, void** ppv);
  33.     HRESULT CheckMediaType(const CMediaType* pmt);
  34.     HRESULT CheckConnect(IPin* pPin);
  35.     HRESULT BreakConnect();
  36. HRESULT CompleteConnect(IPin* pPin);
  37. STDMETHODIMP BeginFlush();
  38. STDMETHODIMP EndFlush();
  39. };
  40. class CStreamDriveThruOutputPin : public CBaseOutputPin
  41. {
  42. CComQIPtr<IStream> m_pStream;
  43. public:
  44. CStreamDriveThruOutputPin(TCHAR* pName, CBaseFilter* pFilter, CCritSec* pLock, HRESULT* phr);
  45. virtual ~CStreamDriveThruOutputPin();
  46. HRESULT GetStream(IStream** ppStream);
  47. DECLARE_IUNKNOWN;
  48.     STDMETHODIMP NonDelegatingQueryInterface(REFIID riid, void** ppv);
  49.     HRESULT DecideBufferSize(IMemAllocator* pAlloc, ALLOCATOR_PROPERTIES* pProperties);
  50.     HRESULT CheckMediaType(const CMediaType* pmt);
  51.     HRESULT GetMediaType(int iPosition, CMediaType* pmt);
  52.     HRESULT CheckConnect(IPin* pPin);
  53.     HRESULT BreakConnect();
  54.     HRESULT CompleteConnect(IPin* pPin);
  55. STDMETHODIMP BeginFlush();
  56. STDMETHODIMP EndFlush();
  57. STDMETHODIMP Notify(IBaseFilter* pSender, Quality q);
  58. };
  59. [uuid("534FE6FD-F1F0-4aec-9F45-FF397320CE33")]
  60. class CStreamDriveThruFilter : public CBaseFilter, protected CAMThread, public IMediaSeeking
  61. {
  62. CCritSec m_csLock;
  63. CStreamDriveThruInputPin* m_pInput;
  64. CStreamDriveThruOutputPin* m_pOutput;
  65. protected:
  66. enum {CMD_EXIT, CMD_STOP, CMD_PAUSE, CMD_RUN};
  67.     DWORD ThreadProc();
  68. LONGLONG m_position;
  69. public:
  70. CStreamDriveThruFilter(LPUNKNOWN pUnk, HRESULT* phr);
  71. virtual ~CStreamDriveThruFilter();
  72. DECLARE_IUNKNOWN;
  73.     STDMETHODIMP NonDelegatingQueryInterface(REFIID riid, void** ppv);
  74. int GetPinCount();
  75. CBasePin* GetPin(int n);
  76. STDMETHODIMP Stop();
  77. STDMETHODIMP Pause();
  78. STDMETHODIMP Run(REFERENCE_TIME tStart);
  79. // IMediaSeeking
  80. STDMETHODIMP GetCapabilities(DWORD* pCapabilities);
  81. STDMETHODIMP CheckCapabilities(DWORD* pCapabilities);
  82. STDMETHODIMP IsFormatSupported(const GUID* pFormat);
  83. STDMETHODIMP QueryPreferredFormat(GUID* pFormat);
  84. STDMETHODIMP GetTimeFormat(GUID* pFormat);
  85. STDMETHODIMP IsUsingTimeFormat(const GUID* pFormat);
  86. STDMETHODIMP SetTimeFormat(const GUID* pFormat);
  87. STDMETHODIMP GetDuration(LONGLONG* pDuration);
  88. STDMETHODIMP GetStopPosition(LONGLONG* pStop);
  89. STDMETHODIMP GetCurrentPosition(LONGLONG* pCurrent);
  90. STDMETHODIMP ConvertTimeFormat(LONGLONG* pTarget, const GUID* pTargetFormat, LONGLONG Source, const GUID* pSourceFormat);
  91. STDMETHODIMP SetPositions(LONGLONG* pCurrent, DWORD dwCurrentFlags, LONGLONG* pStop, DWORD dwStopFlags);
  92. STDMETHODIMP GetPositions(LONGLONG* pCurrent, LONGLONG* pStop);
  93. STDMETHODIMP GetAvailable(LONGLONG* pEarliest, LONGLONG* pLatest);
  94. STDMETHODIMP SetRate(double dRate);
  95. STDMETHODIMP GetRate(double* pdRate);
  96. STDMETHODIMP GetPreroll(LONGLONG* pllPreroll);
  97. };