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

多媒体编程

开发平台:

Visual C++

  1. /* 
  2.  * Copyright (C) 2003-2005 Gabest
  3.  *
  4.  *  This Program is free software; you can redistribute it and/or modify
  5.  *  it under the terms of the GNU General Public License as published by
  6.  *  the Free Software Foundation; either version 2, or (at your option)
  7.  *  any later version.
  8.  *   
  9.  *  This Program is distributed in the hope that it will be useful,
  10.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12.  *  GNU General Public License for more details.
  13.  *   
  14.  *  You should have received a copy of the GNU General Public License
  15.  *  along with GNU Make; see the file COPYING.  If not, write to
  16.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  17.  *
  18.  */
  19. #pragma once
  20. #include <atlbase.h>
  21. #include "..BaseSourceBaseSource.h"
  22. class CD2VStream;
  23. [uuid("47CE0591-C4D5-4b41-BED7-28F59AD76228")]
  24. class CD2VSource : public CBaseSource<CD2VStream>
  25. {
  26. public:
  27. CD2VSource(LPUNKNOWN lpunk, HRESULT* phr);
  28. virtual ~CD2VSource();
  29. };
  30. class CMPEG2Dec;
  31. class CD2VStream : public CBaseStream
  32. {
  33. private:
  34. CAutoPtr<CMPEG2Dec> m_pDecoder;
  35. CAutoVectorPtr<BYTE> m_pFrameBuffer;
  36. bool GetDim(int& w, int& h, int& bpp);
  37. public:
  38.     CD2VStream(const WCHAR* fn, CSource* pParent, HRESULT* phr);
  39. virtual ~CD2VStream();
  40.     HRESULT FillBuffer(IMediaSample* pSample, int nFrame, BYTE* pOut, long& len /*in+out*/);
  41.     HRESULT DecideBufferSize(IMemAllocator* pIMemAlloc, ALLOCATOR_PROPERTIES* pProperties);
  42.     HRESULT CheckMediaType(const CMediaType* pMediaType);
  43.     HRESULT GetMediaType(int iPosition, CMediaType* pmt);
  44.     HRESULT SetMediaType(const CMediaType* pmt);
  45. STDMETHODIMP Notify(IBaseFilter* pSender, Quality q);
  46. };