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

多媒体编程

开发平台:

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 "..BaseSplitterBaseSplitter.h"
  23. #include "DiracSplitterFile.h"
  24. [uuid("5899CFB9-948F-4869-A999-5544ECB38BA5")]
  25. class CDiracSplitterFilter : public CBaseSplitterFilter
  26. {
  27. protected:
  28. CAutoPtr<CDiracSplitterFile> m_pFile;
  29. HRESULT CreateOutputs(IAsyncReader* pAsyncReader);
  30. bool DemuxInit();
  31. void DemuxSeek(REFERENCE_TIME rt);
  32. bool DemuxLoop();
  33. public:
  34. CDiracSplitterFilter(LPUNKNOWN pUnk, HRESULT* phr);
  35. DECLARE_IUNKNOWN
  36.     STDMETHODIMP NonDelegatingQueryInterface(REFIID riid, void** ppv);
  37. };
  38. [uuid("09E7F58E-71A1-419D-B0A0-E524AE1454A9")]
  39. class CDiracSourceFilter : public CDiracSplitterFilter
  40. {
  41. public:
  42. CDiracSourceFilter(LPUNKNOWN pUnk, HRESULT* phr);
  43. };
  44. [uuid("F78CF248-180E-4713-B107-B13F7B5C31E1")]
  45. class CDiracVideoDecoder : public CTransformFilter
  46. {
  47.     void* m_decoder; // dirac_decoder_t*
  48. void InitDecoder(), FreeDecoder();
  49. BYTE* m_pYUV[4];
  50. bool m_fDropFrames;
  51. REFERENCE_TIME m_tStart, m_rtAvgTimePerFrame;
  52. HRESULT Deliver(IMediaSample* pIn, REFERENCE_TIME rtStart, REFERENCE_TIME rtStop);
  53. void Copy(BYTE* pOut);
  54. public:
  55. CDiracVideoDecoder(LPUNKNOWN lpunk, HRESULT* phr);
  56. virtual ~CDiracVideoDecoder();
  57. HRESULT Receive(IMediaSample* pIn);
  58. HRESULT CheckInputType(const CMediaType* mtIn);
  59. HRESULT CheckTransform(const CMediaType* mtIn, const CMediaType* mtOut);
  60. HRESULT DecideBufferSize(IMemAllocator* pAllocator, ALLOCATOR_PROPERTIES* pProperties);
  61. HRESULT GetMediaType(int iPosition, CMediaType* pMediaType);
  62. HRESULT StartStreaming();
  63. HRESULT StopStreaming();
  64.     HRESULT NewSegment(REFERENCE_TIME tStart, REFERENCE_TIME tStop, double dRate);
  65. HRESULT AlterQuality(Quality q);
  66. };