mp4video.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:4k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0 and Exhibits. 
  3.  * REALNETWORKS CONFIDENTIAL--NOT FOR DISTRIBUTION IN SOURCE CODE FORM 
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. 
  5.  * All Rights Reserved. 
  6.  * 
  7.  * The contents of this file, and the files included with this file, are 
  8.  * subject to the current version of the RealNetworks Community Source 
  9.  * License Version 1.0 (the "RCSL"), including Attachments A though H, 
  10.  * all available at http://www.helixcommunity.org/content/rcsl. 
  11.  * You may also obtain the license terms directly from RealNetworks. 
  12.  * You may not use this file except in compliance with the RCSL and 
  13.  * its Attachments. There are no redistribution rights for the source 
  14.  * code of this file. Please see the applicable RCSL for the rights, 
  15.  * obligations and limitations governing use of the contents of the file. 
  16.  * 
  17.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  18.  * developer of the Original Code and owns the copyrights in the portions 
  19.  * it created. 
  20.  * 
  21.  * This file, and the files included with this file, is distributed and made 
  22.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  23.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  24.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  25.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  26.  * 
  27.  * Technology Compatibility Kit Test Suite(s) Location: 
  28.  * https://rarvcode-tck.helixcommunity.org 
  29.  * 
  30.  * Contributor(s): 
  31.  * 
  32.  * ***** END LICENSE BLOCK ***** */ 
  33. #ifndef __MP4VIDEO_H__
  34. #define __MP4VIDEO_H__
  35. /****************************************************************************
  36.  *  Includes
  37.  */
  38. #include "vidrend.h"
  39. #include "baseobj.h"
  40. #include "hxalloc.h"
  41. /****************************************************************************
  42.  *  CMP4VideoRenderer
  43.  */
  44. class CMP4VideoRenderer : public CVideoRenderer,
  45.                           public CHXBaseCountingObject
  46. {
  47. private:
  48.     static const char* const zm_pDescription;
  49.     static const char* const zm_pStreamMimeTypes[];
  50. protected:
  51.     virtual CVideoFormat* CreateFormatObject(IHXValues* pHeader);
  52.     const char* CMP4VideoRenderer::GetRendererName(void);
  53.     void SetupBitmapDefaults(IHXValues* pHeader,
  54.      HXBitmapInfoHeader &bitmapInfoHeader);
  55. public:
  56.     static HX_RESULT STDAPICALLTYPE HXCreateInstance(IUnknown** ppIUnknown);
  57.     static HX_RESULT STDAPICALLTYPE CanUnload(void);
  58.     static HX_RESULT STDAPICALLTYPE CanUnload2(void);
  59.     /*
  60.      * Constructor/Destructor
  61.      */
  62.     CMP4VideoRenderer(void);
  63.     ~CMP4VideoRenderer();
  64.     /*
  65.      * IHXPlugin methods
  66.      */
  67.     /************************************************************************
  68.      * Method:
  69.      *     IHXPlugin::GetPluginInfo
  70.      * Purpose:
  71.      *     Returns the basic information about this plugin. Including:
  72.      *
  73.      *     bLoadMultiple whether or not this plugin DLL can be loaded
  74.      * multiple times. All File Formats must set
  75.      * this value to TRUE.
  76.      *     pDescription which is used in about UIs (can be NULL)
  77.      *     pCopyright which is used in about UIs (can be NULL)
  78.      *     pMoreInfoURL which is used in about UIs (can be NULL)
  79.      */
  80.     STDMETHOD(GetPluginInfo) (THIS_
  81. REF(BOOL)  /*OUT*/ bLoadMultiple,
  82. REF(const char*) /*OUT*/ pDescription,
  83. REF(const char*) /*OUT*/ pCopyright,
  84. REF(const char*) /*OUT*/ pMoreInfoURL,
  85. REF(ULONG32)  /*OUT*/ ulVersionNumber
  86. );
  87.     /*
  88.      * IHXRenderer methods
  89.      */
  90.     /************************************************************************
  91.      * Method:
  92.      *     IHXRenderer::GetRendererInfo
  93.      * Purpose:
  94.      *     Returns information vital to the instantiation of rendering 
  95.      *     plugins.
  96.      */
  97.     STDMETHOD(GetRendererInfo) (THIS_
  98. REF(const char**) /*OUT*/ pStreamMimeTypes,
  99. REF(UINT32)       /*OUT*/ unInitialGranularity
  100. );
  101.     CHXMemoryAllocator* m_pOutputAllocator;
  102. };
  103. #endif //__MP4VIDEO_H__