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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: vldstate.h,v 1.1.1.1.42.1 2004/07/09 01:56:22 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 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.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49.  
  50. #include "h263plus.h"
  51. #ifndef _INC_VLDSTATE
  52. #define _INC_VLDSTATE 1
  53. /* Define states for bitstream decoder */
  54. #define ST_DIFF_QUANT         (-4)  /* Decrease state by 4 after decoding QUANT */
  55. #define ST_DIFF_ESC_LEVEL     (-28) /* Decrease state by 28 after decoding ESC_LEVEL */
  56. #define ST_MC_NOCBP_MVDX        1
  57. #define ST_MC_NOCBP_MVDY        2
  58. #define ST_MBA_STARTCODE        3
  59. #define ST_NEXT_BLK_6           4
  60. #define ST_FIRST_BLK_6          5
  61. #define ST_NEXT_BLK_5           6
  62. #define ST_FIRST_BLK_5          7
  63. #define ST_NEXT_BLK_4           8
  64. #define ST_FIRST_BLK_4          9
  65. #define ST_NEXT_BLK_3           10
  66. #define ST_FIRST_BLK_3          11
  67. #define ST_NEXT_BLK_2           12
  68. #define ST_FIRST_BLK_2          13
  69. #define ST_NEXT_BLK_1           14
  70. #define ST_FIRST_BLK_1          15
  71. #define ST_INTRA_DC_BLK_6       16
  72. #define ST_INTRA_AC_BLK_5       17
  73. #define ST_INTRA_DC_BLK_5       18
  74. #define ST_INTRA_AC_BLK_4       19
  75. #define ST_INTRA_DC_BLK_4       20
  76. #define ST_INTRA_AC_BLK_3       21
  77. #define ST_INTRA_DC_BLK_3       22
  78. #define ST_INTRA_AC_BLK_2       23
  79. #define ST_INTRA_DC_BLK_2       24
  80. #define ST_INTRA_AC_BLK_1       25
  81. #define ST_INTRA_DC_BLK_1       26
  82. #define ST_MC_CBP_MVDX          27
  83. #define ST_MC_CBP_MVDY          28
  84. #define ST_CBP                  29
  85. #define ST_INTRA_MQUANT         (ST_INTRA_DC_BLK_1 - ST_DIFF_QUANT)
  86. #define ST_MC_CBP_MQUANT        (ST_MC_CBP_MVDX - ST_DIFF_QUANT)
  87. #define ST_ESC_BLK_6            (ST_NEXT_BLK_6 - ST_DIFF_ESC_LEVEL)
  88. #define ST_INTER_MQUANT         (ST_CBP - ST_DIFF_QUANT)
  89. #define ST_ESC_BLK_5            (ST_NEXT_BLK_5 - ST_DIFF_ESC_LEVEL)
  90. #define ST_MTYPE                35
  91. #define ST_ESC_BLK_4            (ST_NEXT_BLK_4 - ST_DIFF_ESC_LEVEL)
  92. #define ST_GEI_PEI              37
  93. #define ST_ESC_BLK_3            (ST_NEXT_BLK_3 - ST_DIFF_ESC_LEVEL)
  94. #define ST_PTYPE                39
  95. #define ST_ESC_BLK_2            (ST_NEXT_BLK_2 - ST_DIFF_ESC_LEVEL)
  96. #define ST_GQUANT               41
  97. #define ST_ESC_BLK_1            (ST_NEXT_BLK_1 - ST_DIFF_ESC_LEVEL)
  98. #define ST_TR                   43
  99. #define ST_AFTER_STARTCODE      44
  100. #define ST_ESC_INTRA_5          (ST_INTRA_AC_BLK_5 - ST_DIFF_ESC_LEVEL)
  101.                                 /* State 46 is not used */
  102. #define ST_ESC_INTRA_4          (ST_INTRA_AC_BLK_4 - ST_DIFF_ESC_LEVEL)
  103.                                 /* State 48 is not used */
  104. #define ST_ESC_INTRA_3          (ST_INTRA_AC_BLK_3 - ST_DIFF_ESC_LEVEL)
  105.                                 /* State 50 is not used */
  106. #define ST_ESC_INTRA_2          (ST_INTRA_AC_BLK_2 - ST_DIFF_ESC_LEVEL)
  107.                                 /* State 52 is not used */
  108. #define ST_ESC_INTRA_1          (ST_INTRA_AC_BLK_1 - ST_DIFF_ESC_LEVEL)
  109. // Definitions for H.263
  110. #define ST263_BASE              (54)
  111. #define ST263_DIFF_ESC_LEVEL    (-1)    // Decrease state by 1 after decoding ESC_LEVEL
  112. #define ST263_DIFF_INTRA_DC     (-14)   // Decrease state by 14 after decoding INTRA-DC
  113. #define ST263_DIFF_LAST         (-2)    // Decrease state by 2 after decoding TCOEF with LAST=1
  114. #define ST263_FINISHED          (ST263_BASE + 0)
  115. #define ST263_ESC_FINISHED      (ST263_FINISHED - ST263_DIFF_ESC_LEVEL)
  116. #define ST263_BLK_6             (ST263_FINISHED - ST263_DIFF_LAST)
  117. #define ST263_ESC_BLK6          (ST263_BLK_6 - ST263_DIFF_ESC_LEVEL)
  118. #define ST263_BLK_5             (ST263_BLK_6 - ST263_DIFF_LAST)
  119. #define ST263_ESC_BLK5          (ST263_BLK_5 - ST263_DIFF_ESC_LEVEL)
  120. #define ST263_BLK_4             (ST263_BLK_5 - ST263_DIFF_LAST)
  121. #define ST263_ESC_BLK4          (ST263_BLK_4 - ST263_DIFF_ESC_LEVEL)
  122. #define ST263_BLK_3             (ST263_BLK_4 - ST263_DIFF_LAST)
  123. #define ST263_ESC_BLK3          (ST263_BLK_3 - ST263_DIFF_ESC_LEVEL)
  124. #define ST263_BLK_2             (ST263_BLK_3 - ST263_DIFF_LAST)
  125. #define ST263_ESC_BLK2          (ST263_BLK_2 - ST263_DIFF_ESC_LEVEL)
  126. #define ST263_BLK_1             (ST263_BLK_2 - ST263_DIFF_LAST)
  127. #define ST263_ESC_BLK1          (ST263_BLK_1 - ST263_DIFF_ESC_LEVEL)
  128. #define ST263_INTRA_DC_ONLY     (ST263_FINISHED - ST263_DIFF_INTRA_DC)
  129.                                 // State 69 is not used
  130. #define ST263_INTRA_DC_AC       (ST263_BLK_6 - ST263_DIFF_INTRA_DC)
  131. #ifdef DO_H263_PLUS
  132. #define ST263PLUS_BASE              (ST263_INTRA_DC_AC + 1)
  133. #define ST263PLUS_FINISHED          (ST263PLUS_BASE + 0)
  134. #define ST263PLUS_ESC_FINISHED      (ST263PLUS_FINISHED - ST263_DIFF_ESC_LEVEL)
  135. #define ST263PLUS_BLK_6             (ST263PLUS_FINISHED - ST263_DIFF_LAST)
  136. #define ST263PLUS_ESC_BLK6          (ST263PLUS_BLK_6 - ST263_DIFF_ESC_LEVEL)
  137. #define ST263PLUS_BLK_5             (ST263PLUS_BLK_6 - ST263_DIFF_LAST)
  138. #define ST263PLUS_ESC_BLK5          (ST263PLUS_BLK_5 - ST263_DIFF_ESC_LEVEL)
  139. #define ST263PLUS_BLK_4             (ST263PLUS_BLK_5 - ST263_DIFF_LAST)
  140. #define ST263PLUS_ESC_BLK4          (ST263PLUS_BLK_4 - ST263_DIFF_ESC_LEVEL)
  141. #define ST263PLUS_BLK_3             (ST263PLUS_BLK_4 - ST263_DIFF_LAST)
  142. #define ST263PLUS_ESC_BLK3          (ST263PLUS_BLK_3 - ST263_DIFF_ESC_LEVEL)
  143. #define ST263PLUS_BLK_2             (ST263PLUS_BLK_3 - ST263_DIFF_LAST)
  144. #define ST263PLUS_ESC_BLK2          (ST263PLUS_BLK_2 - ST263_DIFF_ESC_LEVEL)
  145. #define ST263PLUS_BLK_1             (ST263PLUS_BLK_2 - ST263_DIFF_LAST)
  146. #define ST263PLUS_ESC_BLK1          (ST263PLUS_BLK_1 - ST263_DIFF_ESC_LEVEL)
  147. #define NUMSTATES               (ST263PLUS_BASE + 15)
  148. #else
  149. #define NUMSTATES               (ST263_BASE + 17)
  150. #endif
  151. #endif