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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: vldtabs.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. #ifndef _INC_VLDTABS
  50. #define _INC_VLDTABS    1
  51. #include "h263plus.h"
  52. /* Decode tables */
  53. #define TAB_DCT_NEXT        0
  54. #define TAB_DCT_FIRST       1
  55. #define TAB_INTRA_DC        2
  56. #define TAB_LAST_INTRA_DC   3
  57. #define TAB_MBA_STARTCODE   4
  58. #define TAB_MTYPE           5
  59. #define TAB_MVD             6
  60. #define TAB_CBP             7
  61. #define TAB_QUANT_TR        8
  62. #define TAB_GEI_PEI         9
  63. #define TAB_GN              10
  64. #define TAB_PTYPE           11
  65. #define TAB_ESCAPE_LEVEL    12
  66. #define TAB_ILLEGAL_STATE   13
  67. /* Decode tables for codewords longer than 8 bits */
  68. #define TAB_DCT_00100       14
  69. #define TAB_DCT_000000      15
  70. #define TAB_ESCAPE_RUN      16
  71. #define TAB_LONG_MBA        17
  72. #define TAB_LONG_STARTCODE  18
  73. #define TAB_LONG_MTYPE      19
  74. #define TAB_LONG_MVD        20
  75. #define TAB_LONG_CBP        21
  76. #define TAB_LONG_SPARE      22
  77. // Decode tables for H.263
  78. #define TAB263_BASE             (23)
  79. #define TAB263_TCOEF            (TAB263_BASE + 0)
  80. #define TAB263_ESCAPE_LEVEL     (TAB263_BASE + 1)
  81. #define TAB263_INTRA_DC         (TAB263_BASE + 2)
  82. #define TAB263_MCBPC_INTRA      (TAB263_BASE + 3)
  83. #define TAB263_MCBPC_INTER      (TAB263_BASE + 4)
  84. #define TAB263_MODB             (TAB263_BASE + 5)
  85. #define TAB263_CBPY             (TAB263_BASE + 6)
  86. #define TAB263_CBPY_INTRA       (TAB263_BASE + 7)
  87. #define TAB263_DQUANT           (TAB263_BASE + 8)
  88. #define TAB263_MVD              (TAB263_BASE + 9)
  89. #define TAB263_FINISHED         (TAB263_BASE + 10)
  90. // Decode tables for codewords longer than 8 bits
  91. #define TAB263_TCOEF_0001       (TAB263_BASE + 11)
  92. #define TAB263_TCOEF_0000_1     (TAB263_BASE + 12)
  93. #define TAB263_TCOEF_0000_0     (TAB263_BASE + 13)
  94. #define TAB263_ESC_RUN          (TAB263_BASE + 14)
  95. #define TAB263_LONG_MCBPC_INTRA (TAB263_BASE + 15)
  96. #define TAB263_LONG_MCBPC_INTER (TAB263_BASE + 16)
  97. #define TAB263_LONG_STARTCODE   (TAB263_BASE + 17)
  98. #define TAB263_LONG_MVD         (TAB263_BASE + 18)
  99. #define TAB263_ZEROS_AND_START  (TAB263_BASE + 19)
  100. #ifdef DO_H263_PLUS
  101. // Decode table to support improved PB frame mode
  102. #define TAB263PLUS_MODB (TAB263_BASE + 20)
  103. // New VLC tables for H.263+
  104. #define TAB263PLUS_TCOEF        (TAB263_BASE + 21)
  105. #define TAB263PLUS_TCOEF_0001   (TAB263_BASE + 22)
  106. #define TAB263PLUS_TCOEF_0000_1 (TAB263_BASE + 23)
  107. #define TAB263PLUS_TCOEF_0000_0 (TAB263_BASE + 24)
  108. // Table to support advanced intra mode
  109. #define TAB263PLUS_INTRA_MODE   (TAB263_BASE + 25)
  110. #define NUMTABS (TAB263_BASE + 26)
  111. #else 
  112. #define NUMTABS                 (TAB263_BASE + 20)
  113. #endif // DO_H263_PLUS
  114. // H.263: indicate last RL-pair by adding 64 to RUN
  115. #define LAST263_RUNVAL      (64)
  116. /* Reasons for exit */
  117. #define OUT_OF_BITS         (0)
  118. #define ILLEGAL_SYMBOL      (-1)
  119. #define ILLEGAL_STATE       (-2)
  120. #define FINISHED_LAST_BLOCK (-3)
  121. #define QUANT_OUT_OF_BOUNDS (-4)
  122. #define UNKNOWN_MTYPE       (-5)
  123. #define BITSTREAM_ERROR     (-6)
  124. #endif