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

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.  
  36. #include "h263plus.h"
  37. #ifndef _INC_VLDSTATE
  38. #define _INC_VLDSTATE 1
  39. /* Define states for bitstream decoder */
  40. #define ST_DIFF_QUANT         (-4)  /* Decrease state by 4 after decoding QUANT */
  41. #define ST_DIFF_ESC_LEVEL     (-28) /* Decrease state by 28 after decoding ESC_LEVEL */
  42. #define ST_MC_NOCBP_MVDX        1
  43. #define ST_MC_NOCBP_MVDY        2
  44. #define ST_MBA_STARTCODE        3
  45. #define ST_NEXT_BLK_6           4
  46. #define ST_FIRST_BLK_6          5
  47. #define ST_NEXT_BLK_5           6
  48. #define ST_FIRST_BLK_5          7
  49. #define ST_NEXT_BLK_4           8
  50. #define ST_FIRST_BLK_4          9
  51. #define ST_NEXT_BLK_3           10
  52. #define ST_FIRST_BLK_3          11
  53. #define ST_NEXT_BLK_2           12
  54. #define ST_FIRST_BLK_2          13
  55. #define ST_NEXT_BLK_1           14
  56. #define ST_FIRST_BLK_1          15
  57. #define ST_INTRA_DC_BLK_6       16
  58. #define ST_INTRA_AC_BLK_5       17
  59. #define ST_INTRA_DC_BLK_5       18
  60. #define ST_INTRA_AC_BLK_4       19
  61. #define ST_INTRA_DC_BLK_4       20
  62. #define ST_INTRA_AC_BLK_3       21
  63. #define ST_INTRA_DC_BLK_3       22
  64. #define ST_INTRA_AC_BLK_2       23
  65. #define ST_INTRA_DC_BLK_2       24
  66. #define ST_INTRA_AC_BLK_1       25
  67. #define ST_INTRA_DC_BLK_1       26
  68. #define ST_MC_CBP_MVDX          27
  69. #define ST_MC_CBP_MVDY          28
  70. #define ST_CBP                  29
  71. #define ST_INTRA_MQUANT         (ST_INTRA_DC_BLK_1 - ST_DIFF_QUANT)
  72. #define ST_MC_CBP_MQUANT        (ST_MC_CBP_MVDX - ST_DIFF_QUANT)
  73. #define ST_ESC_BLK_6            (ST_NEXT_BLK_6 - ST_DIFF_ESC_LEVEL)
  74. #define ST_INTER_MQUANT         (ST_CBP - ST_DIFF_QUANT)
  75. #define ST_ESC_BLK_5            (ST_NEXT_BLK_5 - ST_DIFF_ESC_LEVEL)
  76. #define ST_MTYPE                35
  77. #define ST_ESC_BLK_4            (ST_NEXT_BLK_4 - ST_DIFF_ESC_LEVEL)
  78. #define ST_GEI_PEI              37
  79. #define ST_ESC_BLK_3            (ST_NEXT_BLK_3 - ST_DIFF_ESC_LEVEL)
  80. #define ST_PTYPE                39
  81. #define ST_ESC_BLK_2            (ST_NEXT_BLK_2 - ST_DIFF_ESC_LEVEL)
  82. #define ST_GQUANT               41
  83. #define ST_ESC_BLK_1            (ST_NEXT_BLK_1 - ST_DIFF_ESC_LEVEL)
  84. #define ST_TR                   43
  85. #define ST_AFTER_STARTCODE      44
  86. #define ST_ESC_INTRA_5          (ST_INTRA_AC_BLK_5 - ST_DIFF_ESC_LEVEL)
  87.                                 /* State 46 is not used */
  88. #define ST_ESC_INTRA_4          (ST_INTRA_AC_BLK_4 - ST_DIFF_ESC_LEVEL)
  89.                                 /* State 48 is not used */
  90. #define ST_ESC_INTRA_3          (ST_INTRA_AC_BLK_3 - ST_DIFF_ESC_LEVEL)
  91.                                 /* State 50 is not used */
  92. #define ST_ESC_INTRA_2          (ST_INTRA_AC_BLK_2 - ST_DIFF_ESC_LEVEL)
  93.                                 /* State 52 is not used */
  94. #define ST_ESC_INTRA_1          (ST_INTRA_AC_BLK_1 - ST_DIFF_ESC_LEVEL)
  95. // Definitions for H.263
  96. #define ST263_BASE              (54)
  97. #define ST263_DIFF_ESC_LEVEL    (-1)    // Decrease state by 1 after decoding ESC_LEVEL
  98. #define ST263_DIFF_INTRA_DC     (-14)   // Decrease state by 14 after decoding INTRA-DC
  99. #define ST263_DIFF_LAST         (-2)    // Decrease state by 2 after decoding TCOEF with LAST=1
  100. #define ST263_FINISHED          (ST263_BASE + 0)
  101. #define ST263_ESC_FINISHED      (ST263_FINISHED - ST263_DIFF_ESC_LEVEL)
  102. #define ST263_BLK_6             (ST263_FINISHED - ST263_DIFF_LAST)
  103. #define ST263_ESC_BLK6          (ST263_BLK_6 - ST263_DIFF_ESC_LEVEL)
  104. #define ST263_BLK_5             (ST263_BLK_6 - ST263_DIFF_LAST)
  105. #define ST263_ESC_BLK5          (ST263_BLK_5 - ST263_DIFF_ESC_LEVEL)
  106. #define ST263_BLK_4             (ST263_BLK_5 - ST263_DIFF_LAST)
  107. #define ST263_ESC_BLK4          (ST263_BLK_4 - ST263_DIFF_ESC_LEVEL)
  108. #define ST263_BLK_3             (ST263_BLK_4 - ST263_DIFF_LAST)
  109. #define ST263_ESC_BLK3          (ST263_BLK_3 - ST263_DIFF_ESC_LEVEL)
  110. #define ST263_BLK_2             (ST263_BLK_3 - ST263_DIFF_LAST)
  111. #define ST263_ESC_BLK2          (ST263_BLK_2 - ST263_DIFF_ESC_LEVEL)
  112. #define ST263_BLK_1             (ST263_BLK_2 - ST263_DIFF_LAST)
  113. #define ST263_ESC_BLK1          (ST263_BLK_1 - ST263_DIFF_ESC_LEVEL)
  114. #define ST263_INTRA_DC_ONLY     (ST263_FINISHED - ST263_DIFF_INTRA_DC)
  115.                                 // State 69 is not used
  116. #define ST263_INTRA_DC_AC       (ST263_BLK_6 - ST263_DIFF_INTRA_DC)
  117. #ifdef DO_H263_PLUS
  118. #define ST263PLUS_BASE              (ST263_INTRA_DC_AC + 1)
  119. #define ST263PLUS_FINISHED          (ST263PLUS_BASE + 0)
  120. #define ST263PLUS_ESC_FINISHED      (ST263PLUS_FINISHED - ST263_DIFF_ESC_LEVEL)
  121. #define ST263PLUS_BLK_6             (ST263PLUS_FINISHED - ST263_DIFF_LAST)
  122. #define ST263PLUS_ESC_BLK6          (ST263PLUS_BLK_6 - ST263_DIFF_ESC_LEVEL)
  123. #define ST263PLUS_BLK_5             (ST263PLUS_BLK_6 - ST263_DIFF_LAST)
  124. #define ST263PLUS_ESC_BLK5          (ST263PLUS_BLK_5 - ST263_DIFF_ESC_LEVEL)
  125. #define ST263PLUS_BLK_4             (ST263PLUS_BLK_5 - ST263_DIFF_LAST)
  126. #define ST263PLUS_ESC_BLK4          (ST263PLUS_BLK_4 - ST263_DIFF_ESC_LEVEL)
  127. #define ST263PLUS_BLK_3             (ST263PLUS_BLK_4 - ST263_DIFF_LAST)
  128. #define ST263PLUS_ESC_BLK3          (ST263PLUS_BLK_3 - ST263_DIFF_ESC_LEVEL)
  129. #define ST263PLUS_BLK_2             (ST263PLUS_BLK_3 - ST263_DIFF_LAST)
  130. #define ST263PLUS_ESC_BLK2          (ST263PLUS_BLK_2 - ST263_DIFF_ESC_LEVEL)
  131. #define ST263PLUS_BLK_1             (ST263PLUS_BLK_2 - ST263_DIFF_LAST)
  132. #define ST263PLUS_ESC_BLK1          (ST263PLUS_BLK_1 - ST263_DIFF_ESC_LEVEL)
  133. #define NUMSTATES               (ST263PLUS_BASE + 15)
  134. #else
  135. #define NUMSTATES               (ST263_BASE + 17)
  136. #endif
  137. #endif