DSMMuxer.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 "..basemuxerbasemuxer.h"
  23. #include "........includedsmdsm.h"
  24. [uuid("C6590B76-587E-4082-9125-680D0693A97B")]
  25. class CDSMMuxerFilter : public CBaseMuxerFilter
  26. {
  27. bool m_fAutoChap, m_fAutoRes;
  28. struct SyncPoint {BYTE id; REFERENCE_TIME rtStart, rtStop; __int64 fp;};
  29. struct IndexedSyncPoint {BYTE id; REFERENCE_TIME rt, rtfp; __int64 fp;};
  30. CList<SyncPoint> m_sps;
  31. CList<IndexedSyncPoint> m_isps;
  32. REFERENCE_TIME m_rtPrevSyncPoint;
  33. void IndexSyncPoint(const MuxerPacket* p, __int64 fp);
  34. void MuxPacketHeader(IBitStream* pBS, dsmp_t type, UINT64 len);
  35. void MuxFileInfo(IBitStream* pBS);
  36. void MuxStreamInfo(IBitStream* pBS, CBaseMuxerInputPin* pPin);
  37. protected:
  38. void MuxInit();
  39. void MuxHeader(IBitStream* pBS);
  40. void MuxPacket(IBitStream* pBS, const MuxerPacket* pPacket);
  41. void MuxFooter(IBitStream* pBS);
  42. public:
  43. CDSMMuxerFilter(LPUNKNOWN pUnk, HRESULT* phr, bool fAutoChap = true, bool fAutoRes = true);
  44. virtual ~CDSMMuxerFilter();
  45. };