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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: h261type.h,v 1.1.1.1.42.1 2004/07/09 01:56:17 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. #ifndef _INC_H261TYPE
  51. #define _INC_H261TYPE   1
  52. #include "machine.h"
  53. //typedef signed char       S8;         // 8 bits signed
  54. //typedef unsigned char     U8;         // 8 bits unsigned
  55. //typedef short int         S16;        // 16 bits signed
  56. //typedef unsigned short int U16;       // 16 bits unsigned
  57. //typedef long int          S32;        // 32 bits signed
  58. //typedef unsigned long int U32;        // 32 bits unsigned
  59. //typedef unsigned char     PIXEL;      // 8 bits unsigned
  60. /* SYMBOL - Symbol descriptor */
  61. typedef struct {
  62.     S8              value;
  63.     S8              type;
  64. } SYMBOL;
  65. /* BS_PTR - Pointer to current position in bitstream */
  66. typedef struct {
  67.     U8          *byteptr;    // Points to current byte
  68.     int          bitptr;     // Number of bits already consumed/processed in
  69.                                 // current byte, i.e., points at bit (7-bitptr)
  70. } BS_PTR;
  71. /* BLOCK_DESCR - Descriptor for symbols in a block */
  72. typedef struct {
  73.     SYMBOL      *sym;        // Points to array of run-level pairs
  74.     int          nsym;       // Number of run-level pairs in array
  75.     int          intraVar;   // Block variance
  76.     int          predErr;    // Prediction error (undefined for INTRA blocks)
  77. } BLOCK_DESCR;
  78. /* MACROBLOCK_DESCR - 256-byte descriptor for MB, that consists of 6 blocks */
  79. /*** NOTE! This structure MUST be 256 bytes in size for efficiency.  ***/
  80. typedef struct {
  81.     BLOCK_DESCR     block[6];
  82.     BLOCK_DESCR     Bblock[6];  // Descriptors for B-blocks
  83.     U32             codedCount; // Number of times macroblock has been coded
  84.     int             lumaVar;    // Average of 4 luminance block variances (intraVar)
  85.     int             dquant;     // H.263: differential value for quant
  86.     int             quality;    // Quality index used to select "quant" and HF attenuation
  87.     U8              mtype;
  88.     U8              active;     // Indicates active part of picture for INTRA blocks;
  89.                                 // Undefined for other MTYPEs
  90.     U8              quant; // Quantizer step
  91.     U8              cbp; // Coded block pattern
  92.     U8              x;          // mb_column
  93.     U8              y;          // mb_row
  94.     S8              mv_x;       // Hor. component of motion vector
  95.     S8              mv_y;       // Vert. component of motion vector
  96.     S8              mvd_x;      // Hor. motion vector difference
  97.     S8              mvd_y;      // Vert. motion vector difference
  98.     U8              modB;       // Mode for B-blocks; defined for PB frames only    
  99.     U8              intra_mode; // Intra prediction mode; defined for advanced intra mode only
  100.     S8              blkMvX[4];  // Hor. motion for 8x8 blocks; defined when mtype=INTER4V
  101.     S8              blkMvY[4];  // Vert. motion for 8x8 blocks
  102.     S8              blkDiffX[4]; // Hor. mv diff. for 8x8 blocks (mtype=INTER4V)
  103.     S8              blkDiffY[4]; // Vert. mv difference for 8x8 blocks
  104.     U8              Bquant;     // quant for B-frame
  105.     U8              cbpB;       // Coded block pattern for B-blocks; defined if modB > 1
  106.     S8              mvdB_x;     // Mv data for B-macroblock; defined if modB > 0
  107.     S8              mvdB_y;
  108.     S8              blkMvFx[4]; // Hor. motion for forward prediction of B-frame
  109.     S8              blkMvFy[4]; // Vert. motion for forward prediction of B-frame
  110.     S8              blkMvBx[4]; // Hor. motion for backward prediction of B-frame
  111.     S8              blkMvBy[4]; // Vert. motion for backward prediction of B-frame
  112. } MACROBLOCK_DESCR;
  113. /* GOB_DESCR - Descriptor for Group Of Block */
  114. typedef struct {
  115.     int                     gn;         // GOB Number
  116.     int                     next_gn;    // Next GOB Number
  117.     int                     gquant;
  118.     int                     gei;
  119.     int                     num_mb;     // Number of macroblocks
  120.     MACROBLOCK_DESCR        *mb;       // Origin of macroblock array
  121.     int                     first_col;  // First MB in GOB
  122.     int                     first_row;
  123.     int                     mb_width;   // MBs per row
  124.     int                     mb_offset;  // Row offset
  125.     int                     num_gspare;
  126.     S8                      *gspare;
  127. } GOB_DESCR;
  128. /*  ENCTABENTRY - Variable length code */
  129. typedef struct {
  130.     U32             code;   // Variable length code, starting in MSB; max 25 bits
  131.     int             len;    // of bits
  132. } ENCTABENTRY;
  133. #define DCT_8X8_SCALE       2                       /* DCT_SCALE**2 */
  134. #define QTABLE_MAX_MAGN     (2048*DCT_8X8_SCALE)    /* 2048 * DCT_SCALE**2 */
  135. #define MAX_Q_INDEX         127
  136.                      /* Largest qz output */
  137. /* Dimensions for Qtab */
  138. #define QUALITY_STEPS       (31)
  139. #define MASKING_STEPS       (1)
  140. /* Structures for table-based quantization */
  141. typedef struct QTab {
  142.     S8  qVal[(1+2*QTABLE_MAX_MAGN)];
  143. } QTab;
  144. typedef struct QTab *pQTab;
  145.                  
  146. typedef struct QMatrix {
  147.     int     maxCoeff;           // last coeff to quantize [1,64]
  148.     pQTab   qCoeffTabs[64];     // tables
  149. } QMatrix;
  150. typedef struct QMatrix *pQMatrix;
  151. // typedef for region-of-interest rectangle
  152. typedef struct {
  153.     S32 left;
  154.     S32 top;
  155.     S32 right;
  156.     S32 bottom;
  157. } ROI_RECT;
  158. #endif