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

多媒体编程

开发平台:

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 "......DSUtilDSMPropertyBag.h"
  23. class CBaseMuxerInputPin;
  24. struct MuxerPacket
  25. {
  26. CBaseMuxerInputPin* pPin;
  27. REFERENCE_TIME rtStart, rtStop;
  28. CArray<BYTE> pData;
  29. enum flag_t {empty = 0, timevalid = 1, syncpoint = 2, discontinuity = 4, eos = 8, bogus = 16};
  30. DWORD flags;
  31. struct MuxerPacket(CBaseMuxerInputPin* pPin) {this->pPin = pPin; rtStart = rtStop = _I64_MIN; flags = empty;}
  32. bool IsTimeValid() const {return !!(flags & timevalid);}
  33. bool IsSyncPoint() const {return !!(flags & syncpoint);}
  34. bool IsDiscontinuity() const {return !!(flags & discontinuity);}
  35. bool IsEOS() const {return !!(flags & eos);}
  36. bool IsBogus() const {return !!(flags & bogus);}
  37. };
  38. class CBaseMuxerInputPin : public CBaseInputPin, public IDSMPropertyBagImpl
  39. {
  40. private:
  41. int m_iID;
  42. CCritSec m_csReceive;
  43. REFERENCE_TIME m_rtMaxStart, m_rtDuration;
  44. bool m_fEOS;
  45. CCritSec m_csQueue;
  46. CAutoPtrList<MuxerPacket> m_queue;
  47. void PushPacket(CAutoPtr<MuxerPacket> pPacket);
  48. CAutoPtr<MuxerPacket> PopPacket();
  49. CAMEvent m_evAcceptPacket;
  50. friend class CBaseMuxerFilter;
  51. public:
  52. CBaseMuxerInputPin(LPCWSTR pName, CBaseFilter* pFilter, CCritSec* pLock, HRESULT* phr);
  53. virtual ~CBaseMuxerInputPin();
  54. DECLARE_IUNKNOWN;
  55.     STDMETHODIMP NonDelegatingQueryInterface(REFIID riid, void** ppv);
  56. REFERENCE_TIME GetDuration() {return m_rtDuration;}
  57. int GetID() {return m_iID;}
  58. CMediaType& CurrentMediaType() {return m_mt;}
  59. bool IsSubtitleStream();
  60.     HRESULT CheckMediaType(const CMediaType* pmt);
  61.     HRESULT BreakConnect();
  62.     HRESULT CompleteConnect(IPin* pReceivePin);
  63. HRESULT Active();
  64. HRESULT Inactive();
  65.     STDMETHODIMP NewSegment(REFERENCE_TIME tStart, REFERENCE_TIME tStop, double dRate);
  66. STDMETHODIMP Receive(IMediaSample* pSample);
  67.     STDMETHODIMP EndOfStream();
  68. };