CDXAReader.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 "..asyncreaderasyncio.h"
  24. #include "..asyncreaderasyncrdr.h"
  25. class CCDXAStream : public CAsyncStream
  26. {
  27. private:
  28. enum 
  29. {
  30. RIFFCDXA_HEADER_SIZE = 44, // usually...
  31. RAW_SYNC_SIZE = 12, // 00 FF .. FF 00
  32. RAW_HEADER_SIZE = 4,
  33. RAW_SUBHEADER_SIZE = 8,
  34. RAW_DATA_SIZE = 2324,
  35. RAW_EDC_SIZE = 4,
  36. RAW_SECTOR_SIZE = 2352
  37. };
  38.     CCritSec m_csLock;
  39. HANDLE m_hFile;
  40. LONGLONG m_llPosition, m_llLength;
  41. int m_nFirstSector;
  42. int m_nBufferedSector;
  43. BYTE m_sector[RAW_SECTOR_SIZE];
  44. bool LookForMediaSubType();
  45. public:
  46. CCDXAStream();
  47. virtual ~CCDXAStream();
  48. bool Load(const WCHAR* fnw);
  49.     HRESULT SetPointer(LONGLONG llPos);
  50.     HRESULT Read(PBYTE pbBuffer, DWORD dwBytesToRead, BOOL bAlign, LPDWORD pdwBytesRead);
  51.     LONGLONG Size(LONGLONG* pSizeAvailable);
  52.     DWORD Alignment();
  53.     void Lock();
  54. void Unlock();
  55. GUID m_subtype;
  56. };
  57. [uuid("D367878E-F3B8-4235-A968-F378EF1B9A44")]
  58. class CCDXAReader 
  59. : public CAsyncReader
  60. , public IFileSourceFilter
  61. {
  62. CCDXAStream m_stream;
  63. CStringW m_fn;
  64. public:
  65.     CCDXAReader(IUnknown* pUnk, HRESULT* phr);
  66. ~CCDXAReader();
  67.     DECLARE_IUNKNOWN
  68.     STDMETHODIMP NonDelegatingQueryInterface(REFIID riid, void** ppv);
  69. // IFileSourceFilter
  70. STDMETHODIMP Load(LPCOLESTR pszFileName, const AM_MEDIA_TYPE* pmt);
  71. STDMETHODIMP GetCurFile(LPOLESTR* ppszFileName, AM_MEDIA_TYPE* pmt);
  72. };