AviSplitter.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 <atlbase.h>
  23. #include <atlcoll.h>
  24. #include <afxtempl.h>
  25. #include "..BaseSplitterBaseSplitter.h"
  26. class CAviFile;
  27. class CAviSplitterOutputPin : public CBaseSplitterOutputPin
  28. {
  29. public:
  30. CAviSplitterOutputPin(CArray<CMediaType>& mts, LPCWSTR pName, CBaseFilter* pFilter, CCritSec* pLock, HRESULT* phr);
  31. HRESULT CheckConnect(IPin* pPin);
  32. };
  33. [uuid("9736D831-9D6C-4E72-B6E7-560EF9181001")]
  34. class CAviSplitterFilter : public CBaseSplitterFilter
  35. {
  36. CAutoVectorPtr<DWORD> m_tFrame;
  37. protected:
  38. CAutoPtr<CAviFile> m_pFile;
  39. HRESULT CreateOutputs(IAsyncReader* pAsyncReader);
  40. bool DemuxInit();
  41. void DemuxSeek(REFERENCE_TIME rt);
  42. bool DemuxLoop();
  43. HRESULT ReIndex(__int64 end, UINT64* pSize);
  44. public:
  45. CAviSplitterFilter(LPUNKNOWN pUnk, HRESULT* phr);
  46. DECLARE_IUNKNOWN;
  47.     STDMETHODIMP NonDelegatingQueryInterface(REFIID riid, void** ppv);
  48. // IMediaSeeking
  49. STDMETHODIMP GetDuration(LONGLONG* pDuration);
  50. // TODO: this is too ugly, integrate this with the baseclass somehow
  51. GUID m_timeformat;
  52. STDMETHODIMP IsFormatSupported(const GUID* pFormat);
  53. STDMETHODIMP GetTimeFormat(GUID* pFormat);
  54. STDMETHODIMP IsUsingTimeFormat(const GUID* pFormat);
  55. STDMETHODIMP SetTimeFormat(const GUID* pFormat);
  56. STDMETHODIMP GetStopPosition(LONGLONG* pStop);
  57. STDMETHODIMP ConvertTimeFormat(LONGLONG* pTarget, const GUID* pTargetFormat, LONGLONG Source, const GUID* pSourceFormat);
  58. STDMETHODIMP GetPositions(LONGLONG* pCurrent, LONGLONG* pStop);
  59. HRESULT SetPositionsInternal(void* id, LONGLONG* pCurrent, DWORD dwCurrentFlags, LONGLONG* pStop, DWORD dwStopFlags);
  60. // IKeyFrameInfo
  61. STDMETHODIMP GetKeyFrameCount(UINT& nKFs);
  62. STDMETHODIMP GetKeyFrames(const GUID* pFormat, REFERENCE_TIME* pKFs, UINT& nKFs);
  63. };
  64. [uuid("CEA8DEFF-0AF7-4DB9-9A38-FB3C3AEFC0DE")]
  65. class CAviSourceFilter : public CAviSplitterFilter
  66. {
  67. public:
  68. CAviSourceFilter(LPUNKNOWN pUnk, HRESULT* phr);
  69. };