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

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef __H263VIDFMT_H__
  36. #define __H263VIDFMT_H__
  37. /****************************************************************************
  38.  *  Defines
  39.  */
  40. #define H263_PIXEL_SIZE 12
  41. #define H263_PIXEL_FORMAT HX_I420
  42. /****************************************************************************
  43.  *  Includes
  44.  */
  45. #include "vidrendf.h"
  46. #include "hxformt.h"
  47. // #include "rncolor.h"
  48. #ifdef _WIN32
  49. // #include "ddraw.h"
  50. // #include "colormap.h"
  51. // #include "coloracc.h"
  52. #endif  /* _WIN32 */
  53. #include "h263vdec.h"
  54. #include "h263pyld.h"
  55. #include "h263dec.h"
  56. /****************************************************************************
  57.  *  Globals
  58.  */
  59. class CH263VideoRenderer;
  60. /****************************************************************************
  61.  *  CH263VideoFormat
  62.  */
  63. class CH263VideoFormat : public CVideoFormat
  64. {
  65. public:
  66.     /*
  67.      * Constructor/Destructor
  68.      */
  69.     CH263VideoFormat(IHXCommonClassFactory* pCommonClassFactory,
  70.      CH263VideoRenderer* pH263VideoRenderer);
  71.     virtual ~CH263VideoFormat();
  72.     
  73.     /*
  74.      * Public and Customizable functionality - derived
  75.      */
  76.     virtual HX_RESULT Init(IHXValues* pHeader);
  77.     
  78.     virtual void Reset(void);
  79.     virtual HX_RESULT InitBitmapInfoHeader(HXBitmapInfoHeader &bitmapInfoHeader,
  80.    CMediaPacket* pVideoPacket);
  81.     virtual BOOL IsBitmapFormatChanged(HXBitmapInfoHeader &BitmapInfoHeader,
  82.        CMediaPacket* pVideoPacket);
  83.     class H263DecSpecStruct
  84.     {
  85.     public:
  86. UINT8 pVendor[4];
  87. UINT8 pDecoderVersion[1];
  88. UINT8 pH263Level[1];
  89. UINT8 pH263Profile[1];
  90.     };
  91. protected:
  92.     /*
  93.      * Protected but Customizable functionality - derived
  94.      */
  95.     virtual CMediaPacket* CreateAssembledPacket(IHXPacket* pCodecData);
  96.     virtual CMediaPacket* CreateDecodedPacket(CMediaPacket* pFrameToDecode);
  97.     virtual CH263Decoder* CreateDecoder();
  98.     CH263Decoder* m_pDecoder;
  99.     CH263VideoRenderer* m_pH263VideoRenderer;
  100.  
  101. private:
  102.     class DecoderSpecificInfoV10
  103.     {
  104.     public:
  105. UINT8 pTag[1];
  106. UINT8 pSize[4];
  107. H263DecSpecStruct sData;
  108. UINT8 pMaxWidth[2];
  109. UINT8 pMaxHeight[2];
  110.     };
  111.     class DecoderSpecificInfoV20
  112.     {
  113.     public:
  114. UINT8 pSize[4];
  115. UINT8 pType[4];
  116. H263DecSpecStruct sData;
  117.     };
  118.     static void KillH263ampleDesc(void* pSampleDesc, void* pUserData);
  119.     void _Reset(void);
  120.     HX_RESULT ConfigFrom3GPPHeader(IHXBuffer* pConfigData);
  121.     IHXPayloadFormatObject* m_pRssm;
  122.     HXxSize* m_pMaxDims;
  123.     HXxSize* m_pAssmDims;
  124.     HXxSize m_DecoderDims;
  125.     HXxSize m_LastFrameDims;
  126.     ULONG32 m_ulDecoderBufSize;
  127. };
  128. #endif // __H263VIDFMT_H__