hxmtypes.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:4k
源码类别:

Symbian

开发平台:

Visual 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. // PN generic media stream types(audio,video,image) in network byte order
  36. #define HX_MEDIA_NATIVE 0x4E545645L // 'NTVE'
  37. #define HX_MEDIA_AUDIO 0x4155444FL  // 'AUDO'
  38. #define HX_MEDIA_VIDEO 0x5649444FL  // 'VIDO'
  39. #define HX_MEDIA_IMAGE 0x494D4147L  // 'IMAG'
  40. #define HX_MEDIA_IMAGEMAP  0x494D4150L  // 'IMAP'
  41. #define HX_MEDIA_SYNCMM  0x53594D4DL  // 'SYMM'
  42. #define HX_MEDIA_PACKETIZER 0x504B4554L // 'PKET'
  43. #define HX_MEDIA_SYNCAD  0x53594144L  // 'SYAD'
  44. #define HX_MEDIA_IMAGE2 0x494D4742L  // 'IMG2'
  45. #define HX_MEDIA_OTHER 0x4F544852L // 'OTHR'
  46. #define HX_H263VIDEO_ID 0x52563130L // 'RV10'
  47. #define HX_RV20VIDEO_ID 0x52563230L // 'RV20'
  48. #define HX_RV30VIDEO_ID 0x52563330L // 'RV30'
  49. #define HX_RV4XVIDEO_ID 0x52563458L // 'RV4X'
  50. #define HX_RV40VIDEO_ID 0x52563430L // 'RV40'
  51. #define HX_RVTRVIDEO_ID 0x52565452 // 'RVTR' (for rv20 codec)
  52. #define HX_RVTR_RV30_ID 0x52565432 // 'RVT2' (for rv30 codec)
  53. #define HX_RGB3VIDEO_ID 0x52474256L // 'RGBV'
  54. #define HX_RGB3_ID 0x52474233L // 'RGB3'
  55. #define HX_RGB555_ID 0x52474235L // 'RGB5'
  56. #define HX_RGB565_ID 0x52474236L // 'RGB6'
  57. #define HX_RGB24_ID 0x20524742L // ' RGB' 24 bit RGB top-down format
  58. #define HX_8BIT_ID 0x38424954L // '8BIT' 8 Bit dithered format
  59. #define HX_MP4VVIDEO_ID 0x4d503456 // 'MP4V'
  60. #define HX_CLEARVIDEO_ID 'CLV1'
  61. #define HX_YUV420_ID 0x59555632L // 'YUV2'
  62. #define HX_YUV411_ID 0x59555631L // 'YUV1'
  63. #define HX_YUVRAW_ID 0x59555652L // 'YUVR'
  64. #define RA_WTIMAGE_ID 0x52493130L // 'RI10'
  65. // ICM codecs
  66. #define ICM_CVID 0x43564944L // 'CVID'
  67. #define ICM_IV31 0x39563331L // 'IV31'
  68. #define ICM_IV32 0x39563332L // 'IV32'
  69. #define ICM_IV41 0x39563431L // 'IV41'
  70. #define ICM_MRLE 0x4D524C45L // 'MRLE'
  71. #define ICM_CRAM 0x4352414DL // 'CRAM'
  72. #ifdef _WIN16
  73. #define ICM_CVID_NAME "ICCVID.DLL"
  74. #define ICM_IV31_NAME "IR32_32.DLL"
  75. #define ICM_IV32_NAME "IR32_32.DLL"
  76. #define ICM_IV41_NAME "IR41_32.DLL"
  77. #define ICM_MRLE_NAME "MSVIDEO.DLL"
  78. #define ICM_CRAM_NAME "MSVIDEO.DLL"
  79. #else
  80. #define ICM_CVID_NAME "ICCVID.DLL"
  81. #define ICM_IV31_NAME "IR32_32.DLL"
  82. #define ICM_IV32_NAME "IR32_32.DLL"
  83. #define ICM_IV41_NAME "IR41_32.DLL"
  84. #define ICM_MRLE_NAME "MSRLE32.DLL"
  85. #define ICM_CRAM_NAME "MSVIDC32.DLL"
  86. #endif /* _WIN16 */
  87. // ACM codecs
  88. #define ACM_CODEC 0x41554443L // 'AUDC'
  89. #define ACM32_NAME "MSACM32.DLL"
  90. #define ACM16_NAME "MSACM.DLL"