speex_bits.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:6k
源码类别:

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2002 Jean-Marc Valin */
  2. /**
  3.    @file speex_bits.h
  4.    @brief Handles bit packing/unpacking
  5. */
  6. /*
  7.    Redistribution and use in source and binary forms, with or without
  8.    modification, are permitted provided that the following conditions
  9.    are met:
  10.    
  11.    - Redistributions of source code must retain the above copyright
  12.    notice, this list of conditions and the following disclaimer.
  13.    
  14.    - Redistributions in binary form must reproduce the above copyright
  15.    notice, this list of conditions and the following disclaimer in the
  16.    documentation and/or other materials provided with the distribution.
  17.    
  18.    - Neither the name of the Xiph.org Foundation nor the names of its
  19.    contributors may be used to endorse or promote products derived from
  20.    this software without specific prior written permission.
  21.    
  22.    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  23.    ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  24.    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  25.    A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
  26.    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  27.    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  28.    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  29.    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  30.    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  31.    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  32.    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  33. */
  34. #ifndef BITS_H
  35. #define BITS_H
  36. #ifdef __cplusplus
  37. extern "C" {
  38. #endif
  39. /** Bit-packing data structure representing (part of) a bit-stream. */
  40. typedef struct SpeexBits {
  41.    char *chars;   /**< "raw" data */
  42.    int   nbBits;  /**< Total number of bits stored in the stream*/
  43.    int   charPtr; /**< Position of the byte "cursor" */
  44.    int   bitPtr;  /**< Position of the bit "cursor" within the current char */
  45.    int   owner;   /**< Does the struct "own" the "raw" buffer (member "chars") */
  46.    int   overflow;/**< Set to one if we try to read past the valid data */
  47.    int   buf_size;/**< Allocated size for buffer */
  48.    int   reserved1; /**< Reserved for future use */
  49.    void *reserved2; /**< Reserved for future use */
  50. } SpeexBits;
  51. /** Initializes and allocates resources for a SpeexBits struct */
  52. void speex_bits_init(SpeexBits *bits);
  53. /** Initializes SpeexBits struct using a pre-allocated buffer*/
  54. void speex_bits_init_buffer(SpeexBits *bits, void *buff, int buf_size);
  55. /** Frees all resources associated to a SpeexBits struct. Right now this does nothing since no resources are allocated, but this could change in the future.*/
  56. void speex_bits_destroy(SpeexBits *bits);
  57. /** Resets bits to initial value (just after initialization, erasing content)*/
  58. void speex_bits_reset(SpeexBits *bits);
  59. /** Rewind the bit-stream to the beginning (ready for read) without erasing the content */
  60. void speex_bits_rewind(SpeexBits *bits);
  61. /** Initializes the bit-stream from the data in an area of memory */
  62. void speex_bits_read_from(SpeexBits *bits, char *bytes, int len);
  63. /** Append bytes to the bit-stream
  64.  * @param bits Bit-stream to operate on
  65.  * @param bytes pointer to the bytes what will be appended
  66.  * @param len Number of bytes of append
  67.  */
  68. void speex_bits_read_whole_bytes(SpeexBits *bits, char *bytes, int len);
  69. /** Write the content of a bit-stream to an area of memory */
  70. int speex_bits_write(SpeexBits *bits, char *bytes, int max_len);
  71. /** Like speex_bits_write, but writes only the complete bytes in the stream. Also removes the written bytes from the stream */
  72. int speex_bits_write_whole_bytes(SpeexBits *bits, char *bytes, int max_len);
  73. /** Append bits to the bit-stream
  74.  * @param bits Bit-stream to operate on
  75.  * @param data Value to append as integer
  76.  * @param nbBits number of bits to consider in "data"
  77.  */
  78. void speex_bits_pack(SpeexBits *bits, int data, int nbBits);
  79. /** Interpret the next bits in the bit-stream as a signed integer
  80.  *
  81.  * @param bits Bit-stream to operate on
  82.  * @param nbBits Number of bits to interpret
  83.  * @return A signed integer represented by the bits read
  84.  */
  85. int speex_bits_unpack_signed(SpeexBits *bits, int nbBits);
  86. /** Interpret the next bits in the bit-stream as an unsigned integer
  87.  *
  88.  * @param bits Bit-stream to operate on
  89.  * @param nbBits Number of bits to interpret
  90.  * @return An unsigned integer represented by the bits read
  91.  */
  92. unsigned int speex_bits_unpack_unsigned(SpeexBits *bits, int nbBits);
  93. /** Returns the number of bytes in the bit-stream, including the last one even if it is not "full"
  94.  *
  95.  * @param bits Bit-stream to operate on
  96.  * @return Number of bytes in the stream
  97.  */
  98. int speex_bits_nbytes(SpeexBits *bits);
  99. /** Same as speex_bits_unpack_unsigned, but without modifying the cursor position */
  100. unsigned int speex_bits_peek_unsigned(SpeexBits *bits, int nbBits);
  101. /** Get the value of the next bit in the stream, without modifying the
  102.  * "cursor" position 
  103.  * 
  104.  * @param bits Bit-stream to operate on
  105.  */
  106. int speex_bits_peek(SpeexBits *bits);
  107. /** Advances the position of the "bit cursor" in the stream 
  108.  *
  109.  * @param bits Bit-stream to operate on
  110.  * @param n Number of bits to advance
  111.  */
  112. void speex_bits_advance(SpeexBits *bits, int n);
  113. /** Returns the number of bits remaining to be read in a stream
  114.  *
  115.  * @param bits Bit-stream to operate on
  116.  */
  117. int speex_bits_remaining(SpeexBits *bits);
  118. /** Insert a terminator so that the data can be sent as a packet while auto-detecting 
  119.  * the number of frames in each packet 
  120.  *
  121.  * @param bits Bit-stream to operate on
  122.  */
  123. void speex_bits_insert_terminator(SpeexBits *bits);
  124. #ifdef __cplusplus
  125. }
  126. #endif
  127. #endif