MpegSplitterFile.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 <atlbase.h>
  23. #include <atlcoll.h>
  24. #include <afxtempl.h>
  25. #include "..BaseSplitterBaseSplitter.h"
  26. class CMpegSplitterFile : public CBaseSplitterFileEx
  27. {
  28. CMap<WORD,WORD,BYTE,BYTE> m_pid2pes;
  29. HRESULT Init();
  30. public:
  31. CMpegSplitterFile(IAsyncReader* pAsyncReader, HRESULT& hr);
  32. REFERENCE_TIME NextPTS(DWORD TrackNum);
  33. enum {us, ps, ts, es, pva} m_type;
  34. REFERENCE_TIME m_rtMin, m_rtMax;
  35. __int64 m_posMin, m_posMax;
  36. int m_rate; // byte/sec
  37. struct stream
  38. {
  39. CMediaType mt;
  40. WORD pid;
  41. BYTE pesid, ps1id;
  42. struct stream() {pid = pesid = ps1id = 0;}
  43. operator DWORD() const {return pid ? pid : ((pesid<<8)|ps1id);}
  44. bool operator == (const struct stream& s) const {return (DWORD)*this == (DWORD)s;}
  45. };
  46. enum {video, audio, subpic, unknown};
  47. class CStreamList : public CList<stream>
  48. {
  49. public:
  50. void Insert(stream& s)
  51. {
  52. for(POSITION pos = GetHeadPosition(); pos; GetNext(pos))
  53. {
  54. stream& s2 = GetAt(pos);
  55. if(s < s2) {InsertBefore(pos, s); return;}
  56. }
  57. AddTail(s);
  58. }
  59. static CStringW ToString(int type)
  60. {
  61. return 
  62. type == video ? L"Video" : 
  63. type == audio ? L"Audio" : 
  64. type == subpic ? L"Subtitle" : 
  65. L"Unknown";
  66. }
  67. } m_streams[unknown];
  68. HRESULT SearchStreams(__int64 start, __int64 stop);
  69. DWORD AddStream(WORD pid, BYTE pesid, DWORD len);
  70. };