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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: bitstuff.h,v 1.2.36.3 2004/07/09 01:48:00 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. typedef struct TAG_LD {
  50.   /* bit input */
  51.   unsigned char *rdbfr;
  52.   unsigned char *rdptr;
  53.   int incnt;
  54.   int bitcnt;
  55. } LD;
  56. #if defined _AIX || defined _OSF1 || (defined _SOLARIS && !defined __GNUC__)
  57. #define INLINE static inline
  58. #else
  59. #define INLINE static __inline
  60. #endif
  61. /*
  62.  * Initializes bit-buffer.
  63.  * Use:
  64.  *  void initbuffer (char *buffer, void *bufinfo);
  65.  * Input:
  66.  * buffer - pointer to the input buffer to use
  67.  * bufinfo - pointer to the buffer information
  68.  * Returns:
  69.  *  none
  70.  */
  71. INLINE void initbuffer (unsigned char *buffer, void *bufinfo)
  72. {
  73. LD * ld = (LD*)bufinfo;
  74. ld->rdptr = buffer;
  75. ld->rdbfr = buffer;
  76. ld->incnt = 0;
  77. ld->bitcnt = 0;
  78. }
  79. /*
  80.  * Fills pre-load buffer.
  81.  * Use:
  82.  *  void fillbfr (void *inst);
  83.  * Input:
  84.  * inst - decoder instance
  85.  * Returns:
  86.  *  none
  87.  */
  88. INLINE void fillbfr (void *inst) {/* obsolete */}
  89. /*
  90.  * Returns next n bits (right adjusted) without advancing.
  91.  * Use:
  92.  *  unsigned int showbits(int n, void *inst);
  93.  * Input:
  94.  * n - the number of bits to retrieve
  95.  * inst - decoder instance
  96.  * Note:
  97.  *  len must be less than 24
  98.  * Returns:
  99.  * the bit vector
  100.  */
  101. #ifdef _M_IX86
  102. #pragma warning(disable:4035)
  103. INLINE unsigned int showbits (int n, void *inst)
  104. {
  105. __asm mov eax,inst
  106. __asm mov edx,/* LD */ [eax].rdptr
  107. __asm mov ecx,/* LD */ [eax].incnt
  108. __asm mov eax,dword ptr [edx]
  109. __asm mov edx,32
  110. __asm bswap eax
  111. __asm sub edx,n
  112. __asm shl eax,cl
  113. __asm mov ecx,edx
  114. __asm shr eax,cl
  115. }
  116. #else
  117. /* I guess it should be portable: */
  118. INLINE unsigned int showbits (int n, void *inst)
  119. {
  120. LD * ld = (LD*)inst;
  121. unsigned char *p = ld->rdptr;
  122. unsigned int a, c = ld->incnt;
  123. /* load in big-Endian order: */
  124. a = (unsigned int)(p[0]<<24) + (p[1]<<16) + (p[2]<<8) + (p[3]);
  125. return (a << c) >> (32-n);
  126. }
  127. #endif
  128. /*
  129.  * Advance by n bits.
  130.  * Use:
  131.  * void flushbits(int n, void *inst);
  132.  * Input:
  133.  * n - the number of bits to throw away
  134.  * inst - decoder instance
  135.  * Returns:
  136.  * none
  137.  */
  138. INLINE void flushbits (int n, void *inst)
  139. {
  140. LD * ld = (LD*)inst;
  141.   ld->incnt += n;
  142. ld->bitcnt+= n;
  143. ld->rdptr += ld->incnt >> 3;
  144. ld->incnt &= 0x07;
  145. }
  146. /*
  147.  * Returns next n bits (right adjusted)
  148.  * Use:
  149.  *  unsigned int getbits(int n, void *inst);
  150.  * Input:
  151.  * n - the number of bits to retrieve
  152.  * inst - decoder instance
  153.  * Note:
  154.  *  len must be less than 24
  155.  * Returns:
  156.  * the bit vector
  157.  */
  158. INLINE unsigned int getbits(int n, void *inst)
  159. {
  160. unsigned int l = showbits(n, inst);
  161.     flushbits(n, inst);
  162. return l;
  163. }
  164. /*
  165.  * Returns next bit from the bitstream.
  166.  * Use:
  167.  * unsigned int getbits1 (void * inst);
  168.  * Input:
  169.  * inst - decoder instance
  170.  * Returns:
  171.  * bit value
  172.  */
  173. #if 1
  174. INLINE unsigned int getbits1 (void * inst)
  175. {
  176. LD * ld = (LD*)inst;
  177. unsigned int a = ld->rdptr[0];
  178. unsigned int c = ld->incnt + 1;
  179. ld->bitcnt ++;
  180. ld->incnt = c & 7;
  181. ld->rdptr += c >> 3;
  182. return (a >> (8 - c)) & 1;
  183. }
  184. #else
  185. /* 'lazy' version */
  186. INLINE unsigned int getbits1 (void * inst)
  187. {
  188. return getbits(1, inst);
  189. }
  190. #endif
  191. /*
  192.  * Returns current byte number.
  193.  * Use:
  194.  * unsigned int getbytes (void *bufinfo);
  195.  * bufinfo - pointer to the buffer information
  196.  * Returns:
  197.  * none
  198.  */
  199. INLINE unsigned int getbytes (void *bufinfo)
  200. {
  201. LD * ld = (LD*)ld;
  202.   return ld->bitcnt >> 3;
  203. }
  204. /*
  205.  * Seek to a certain position in the bitstream:
  206.  * Use:
  207.  * unsigned char *gotoByte (int byteInPacket, void *bufinfo);
  208.  * Input:
  209.  * byteInPacket - target byte position
  210.  * bufinfo - pointer to the buffer information
  211.  * Returns
  212.  *  pointer to the requested position in the bistream
  213.  */
  214. INLINE unsigned char *gotoByte (int byteInPacket, void *bufinfo)
  215. {
  216. LD * ld = (LD*)bufinfo;
  217. unsigned char * newPtrLocation = ld->rdbfr + byteInPacket;
  218. ld->rdptr = newPtrLocation;
  219. ld->bitcnt = byteInPacket << 3;
  220. ld->incnt= 0;
  221. return newPtrLocation;
  222. }