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

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. //#include <stdio.h>
  36. //#include <stdlib.h>
  37. //#include <string.h>
  38. //#include <ctype.h>
  39. #include "dllindex.h"
  40. #include "h261defs.h"
  41. #include "h261func.h"
  42. #include "vldstate.h"
  43. #include "vldecode.h"
  44. #include "vldtabs.h"
  45. // forward definition of function
  46. void IncBsPtr2( BS_PTR * bs, int incr);
  47. //  VLDecode - Decode bitstream
  48. extern int pascal VLDECODE(   BS_PTR bs,          // Bitstream pointer */
  49.                         int numbits,        // Max # bits to decode */
  50.                         int * state,        // Initial decoder state;
  51.                                             // returns updated state
  52.                         int * parsed_bits,  // Returns # decoded bits */
  53.                         int * nsym,         // Returns # decoded symbols */
  54.                         SYMBOL sym[],       // Returns nsym symbols */
  55.                         int maxsym          // Dimension of sym array
  56. )
  57. {
  58.     register DECTABENTRY * entry;
  59.     char msg[120];
  60.     //printf( "Entered VLDecode: bitstream = %2x %2x %2x %2x  bitptr = %dn",
  61.     //        *bs.byteptr, *(bs.byteptr + 1), *(bs.byteptr + 2),
  62.     //        *(bs.byteptr + 3), bs.bitptr);
  63.             
  64.     *parsed_bits = 0, *nsym = 0;
  65.     while (*parsed_bits < numbits  &&  *nsym < maxsym) {
  66.         entry = &dectable [selectdectab[ *state ]] [Get8Bits( bs )];
  67.         while (entry->bits < 0) {   /* Long codeword; sym.value indicates table */
  68.             *parsed_bits -= entry->bits;
  69.             IncBsPtr2( &bs, -entry->bits);
  70.             *state += entry->statechange;
  71.             //printf("VLDecode: "); printsym( entry->sym );
  72.             //printf("  State: "); printstate( *state ); printf("n");
  73.             entry = &dectable [ entry->sym.value ] [Get8Bits( bs )];
  74.         }
  75.         *parsed_bits += entry->bits;
  76.         IncBsPtr2( &bs, entry->bits);
  77.         *state += entry->statechange;
  78. /*        {
  79.             int input;
  80.             printf("VLDecode: "); printsym( entry->sym );
  81.             printf("  State: "); printstate( *state );
  82.             printf("  Cont? (<0 to exit): ");
  83.             scanf("%d", &input);
  84.             if (input < 0) exit(0);
  85.         }*/
  86.         if (entry->sym.type  ==  SYM_EXIT) { /* Premature exit */
  87. //#define VTEL_M261
  88. #ifdef VTEL_M261
  89. /* aw talked to staffan: H.261 needs a picture startcode at the end, which comes right after the end of the bitstream.
  90. However, we are not able to find out the end exactly - only in 8 bit granularity.
  91. The EOS which we append for H.263 results in an error which we catch here. 
  92. Also in H.263, EOS is bytealigned and not at the end of the bitstream 
  93. */
  94. if(entry->sym.value  ==  ILLEGAL_SYMBOL) { 
  95. static const SYMBOL startsymbol = {0, SYM_STARTCODE};
  96.    *parsed_bits = numbits;
  97. *state = ST_AFTER_STARTCODE ;
  98. //entry = &dectable [ entry->sym.value ] [Get8Bits( bs )];
  99. sym [(*nsym)++] = startsymbol;
  100. return( OK );
  101. } else 
  102. #endif
  103. {
  104. if (*parsed_bits > numbits) {
  105. return (OUT_OF_BITS);
  106. } else {
  107. return (entry->sym.value);
  108. }
  109. }
  110. }
  111.         sym [(*nsym)++] = entry->sym;
  112.     }
  113.     if (*nsym >= maxsym) {
  114.         //sprintf( msg, "VLDecode: Symbol array overrun");
  115.         //H261ErrMsg( msg );
  116.         return( H261_ERROR );
  117.     }
  118.     if (*parsed_bits > numbits) {
  119.         return (OUT_OF_BITS);
  120.     }
  121.     return( OK );
  122. }
  123. void IncBsPtr2( BS_PTR * bs, int incr)
  124. {
  125.     bs->bitptr += incr;
  126.     while (bs->bitptr > 7) {
  127.         ++(bs->byteptr);
  128.         bs->bitptr -= 8;
  129.     }
  130.     while (bs->bitptr < 0) {
  131.         --(bs->byteptr);
  132.         bs->bitptr += 8;
  133.     }
  134.     return;
  135. }