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

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK *****  
  2.  * Source last modified: $Id: hxqossig.h,v 1.8 2003/11/20 00:47:04 kamlesh Exp $ 
  3.  *   
  4.  * Portions Copyright (c) 1995-2003 RealNetworks, Inc. All Rights Reserved.  
  5.  *       
  6.  * The contents of this file, and the files included with this file, 
  7.  * are subject to the current version of the RealNetworks Public 
  8.  * Source License (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the current version of the RealNetworks Community 
  11.  * Source License (the "RCSL") available at 
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL 
  13.  * will apply. You may also obtain the license terms directly from 
  14.  * RealNetworks.  You may not use this file except in compliance with 
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable 
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for 
  17.  * the rights, obligations and limitations governing use of the 
  18.  * contents of the file. 
  19.  *   
  20.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  21.  * developer of the Original Code and owns the copyrights in the 
  22.  * portions it created. 
  23.  *   
  24.  * This file, and the files included with this file, is distributed 
  25.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY 
  26.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS 
  27.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES 
  28.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET 
  29.  * ENJOYMENT OR NON-INFRINGEMENT. 
  30.  *  
  31.  * Technology Compatibility Kit Test Suite(s) Location:  
  32.  *    http://www.helixcommunity.org/content/tck  
  33.  *  
  34.  * Contributor(s):  
  35.  *   
  36.  * ***** END LICENSE BLOCK ***** */  
  37. #ifndef _HX_QOS_SIG_H_
  38. #define _HX_QOS_SIG_H_
  39. #include "hxtypes.h"
  40. /* Define Signal Type as 32 bit field */
  41. typedef UINT16 HX_QOS_SIGNAL;     
  42. /* bitfield offsets for signal filters */
  43. #define HX_QOS_SIGNAL_LAYER_OFFSET             13                   
  44. #define HX_QOS_SIGNAL_RELEVANCE_OFFSET         10                   
  45. /* QoS Signal Utility Macros */
  46. #define MAKE_HX_QOS_SIGNAL_ID(Layer, Relevance, Id) 
  47. ((unsigned long) (((unsigned long)(Layer)<< HX_QOS_SIGNAL_LAYER_OFFSET ) | 
  48. ((unsigned long)(Relevance)<<HX_QOS_SIGNAL_RELEVANCE_OFFSET) | 
  49. ((unsigned long)(Id))))
  50. /* QoS Signal Layout constants */
  51. #define HX_QOS_SIGNAL_RELEVANCE_COUNT           4
  52. #define HX_QOS_SIGNAL_LAYER_COUNT               5
  53. /* QoS Signal Masks */
  54. #define HX_QOS_SIGNAL_LAYER_MASK              0xE000 // 1110 0000 0000 0000
  55. #define HX_QOS_SIGNAL_RELEVANCE_MASK          0x1C00  // 0001 1100 0000 0000
  56. #define HX_QOS_SIGNAL_ID_MASK                 0x3FF  // 0000 0011 1111 1111 
  57. /* QoS Signal Filter Root*/
  58. #define HX_QOS_SIGNAL_ROOT                    0x0
  59. /* QoS Signal Layer */
  60. #define HX_QOS_SIGNAL_LAYER_NETWORK            1
  61. #define HX_QOS_SIGNAL_LAYER_TRANSPORT          2
  62. #define HX_QOS_SIGNAL_LAYER_FRAMING_TRANSPORT  3
  63. #define HX_QOS_SIGNAL_LAYER_SESSION            4
  64. #define HX_QOS_SIGNAL_LAYER_APPLICATION        5
  65. /* QoS Signal Relevance */
  66. #define HX_QOS_SIGNAL_RELEVANCE_CONFIG         1
  67. #define HX_QOS_SIGNAL_RELEVANCE_METRIC         2
  68. #define HX_QOS_SIGNAL_RELEVANCE_SESSIONCTL     3
  69. #define HX_QOS_SIGNAL_RELEVANCE_CTL            4
  70. /* QoS Common Profile Signals  */
  71. #define HX_QOS_SIGNAL_COMMON_COUNT             7
  72. #define HX_QOS_SIGNAL_COMMON_PROFILE           1
  73. #define HX_QOS_SIGNAL_COMMON_MEDIA_RATE        2
  74. #define HX_QOS_SIGNAL_COMMON_PKT_SZ            3
  75. #define HX_QOS_SIGNAL_COMMON_THRUPUT           4 
  76. #define HX_QOS_SIGNAL_COMMON_BUFSTATE          5
  77. #define HX_QOS_SIGNAL_COMMON_SDB               6
  78. #define HX_QOS_SIGNAL_COMMON_MAX_RATE          7 
  79. /* RTP Common Profile Signals */
  80. #define HX_QOS_SIGNAL_RTP_COUNT                3
  81. #define HX_QOS_SIGNAL_RTCP_CC_MAX_BURST        HX_QOS_SIGNAL_COMMON_COUNT + 1
  82. #define HX_QOS_SIGNAL_RTCP_RR                  HX_QOS_SIGNAL_COMMON_COUNT + 2
  83. #define HX_QOS_SIGNAL_BUF_STATE                HX_QOS_SIGNAL_COMMON_COUNT + 3
  84. /* RDT Common Profile Signals */
  85. #define HX_QOS_SIGNAL_RDT_COUNT                2
  86. #define HX_QOS_SIGNAL_RDT_METRICS              HX_QOS_SIGNAL_COMMON_COUNT +  HX_QOS_SIGNAL_RTP_COUNT + 1
  87. #define HX_QOS_SIGNAL_RDT_BUFFER_STATE         HX_QOS_SIGNAL_COMMON_COUNT +  HX_QOS_SIGNAL_RTP_COUNT + 2
  88. /* Total of all signals */
  89. #define HX_QOS_SIGNAL_COUNT                    HX_QOS_SIGNAL_COMMON_COUNT + HX_QOS_SIGNAL_RTP_COUNT +  HX_QOS_SIGNAL_RDT_COUNT
  90. struct BufferMetricsSignal
  91. {
  92.     UINT32 m_ulStreamNumber;
  93.     UINT32 m_ulLowTimestamp;
  94.     UINT32 m_ulHighTimestamp;
  95.     UINT32 m_ulBytes;
  96. };
  97. struct RateSignal
  98. {
  99.     UINT16 m_unStreamNumber;
  100.     UINT32 m_ulRate;         /* bps */
  101.     UINT32 m_ulCumulativeRate;
  102. };
  103. #endif /* _HX_QOS_SIG_H_ */