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

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 _SDPCHUNK_H_
  36. #define _SDPCHUNK_H_
  37. /****************************************************************************
  38.  *  Includes
  39.  */
  40. #include "hxcom.h"
  41. #include "hxtypes.h"
  42. #include "hxcomm.h"
  43. #include "ihxpckts.h"
  44. /****************************************************************************
  45.  *  Globals
  46.  */
  47. /****************************************************************************
  48.  *  Types
  49.  */
  50. typedef enum
  51. {
  52.     SDPCTX_Session,
  53.     SDPCTX_Media,
  54.     SDPCTX_Time,
  55.     SDPCTX_Generic,
  56.     SDPCTX_Renderer,
  57.     SDPCTX_Group
  58. } SDPChunkContext;
  59. typedef HX_RESULT (*SDPPullFuncPtr) (char* pData, 
  60.      ULONG32 ulLength, 
  61.      IHXValues* pSDPValues,
  62.      IHXCommonClassFactory* pClassFactory);
  63. struct SDPRecordPuller
  64. {
  65.     char* pSDPMatch;
  66.     ULONG32 ulSDPMatchSize;
  67.     SDPPullFuncPtr pPullFunc;
  68. };
  69. /****************************************************************************
  70.  *  Utilities
  71.  */
  72. HX_RESULT SDPParseChunk(char* pData,
  73. ULONG32 ulDataLen,
  74. IHXValues* &pSDPValues,
  75. IHXCommonClassFactory *pClassFactory,
  76. SDPChunkContext SDPContext = SDPCTX_Generic,
  77. BOOL bPullRecords = FALSE);
  78. HX_RESULT SDPParseChunk(char* pData,
  79. ULONG32 ulDataLen,
  80. IHXValues* &pSDPValues,
  81. IHXCommonClassFactory *pClassFactory,
  82. const SDPRecordPuller* pPullTable,
  83. BOOL bPullRecords = FALSE);
  84. HX_RESULT SDPMapPayloadToMime(ULONG32 ulPayloadType,
  85.       IHXBuffer* &pMimeType,
  86.       IHXCommonClassFactory *pClassFactory);
  87. HX_RESULT SDPMapMimeToPayload(IHXBuffer* pMimeTypeBuffer, ULONG32 &ulPayload);
  88. BOOL SDPIsKnownPayload(ULONG32 ulPayloadType);
  89. BOOL SDPIsFixedRatePayload(ULONG32 ulPayloadType);
  90. ULONG32 SDPMapMimeToSamplesPerSecond(IHXBuffer* pMimeTypeBuffer);
  91. #endif  // _SDPCHUNK_H_