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

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2002 Jean-Marc Valin */
  2. /**
  3.    @file sb_celp.h
  4.    @brief Sub-band CELP mode used for wideband encoding
  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 SB_CELP_H
  35. #define SB_CELP_H
  36. #include "modes.h"
  37. #include <speex/speex_bits.h>
  38. #include "nb_celp.h"
  39. /**Structure representing the full state of the sub-band encoder*/
  40. typedef struct SBEncState {
  41.    const SpeexMode *mode;            /**< Pointer to the mode (containing for vtable info) */
  42.    void *st_low;               /**< State of the low-band (narrowband) encoder */
  43.    int    full_frame_size;     /**< Length of full-band frames*/
  44.    int    frame_size;          /**< Length of high-band frames*/
  45.    int    subframeSize;        /**< Length of high-band sub-frames*/
  46.    int    nbSubframes;         /**< Number of high-band sub-frames*/
  47.    int    windowSize;          /**< Length of high-band LPC window*/
  48.    int    lpcSize;             /**< Order of high-band LPC analysis */
  49.    int    bufSize;             /**< Buffer size */
  50.    int    first;               /**< First frame? */
  51.    float  lag_factor;          /**< Lag-windowing control parameter */
  52.    float  lpc_floor;           /**< Controls LPC analysis noise floor */
  53.    spx_word16_t  gamma1;              /**< Perceptual weighting coef 1 */
  54.    spx_word16_t  gamma2;              /**< Perceptual weighting coef 2 */
  55.    char  *stack;               /**< Temporary allocation stack */
  56.    spx_sig_t *x0d, *x1d; /**< QMF filter signals*/
  57.    spx_sig_t *high;                /**< High-band signal (buffer) */
  58.    spx_sig_t *y0, *y1;             /**< QMF synthesis signals */
  59.    spx_word16_t *h0_mem, *h1_mem;
  60.    spx_word32_t *g0_mem, *g1_mem; /**< QMF memories */
  61.    spx_sig_t *excBuf;              /**< High-band excitation */
  62.    spx_sig_t *exc;                 /**< High-band excitation (for QMF only)*/
  63.    spx_sig_t *buf;                 /**< Temporary buffer */
  64.    spx_sig_t *res;                 /**< Zero-input response (ringing) */
  65.    spx_sig_t *sw;                  /**< Perceptually weighted signal */
  66.    spx_sig_t *target;              /**< Weighted target signal (analysis by synthesis) */
  67.    spx_word16_t *window;              /**< LPC analysis window */
  68.    spx_word16_t *lagWindow;           /**< Auto-correlation window */
  69.    spx_word16_t *autocorr;            /**< Auto-correlation (for LPC analysis) */
  70.    spx_coef_t *lpc;                 /**< LPC coefficients */
  71.    spx_lsp_t *lsp;                 /**< LSP coefficients */
  72.    spx_lsp_t *qlsp;                /**< Quantized LSPs */
  73.    spx_lsp_t *old_lsp;             /**< LSPs of previous frame */
  74.    spx_lsp_t *old_qlsp;            /**< Quantized LSPs of previous frame */
  75.    spx_lsp_t *interp_lsp;          /**< Interpolated LSPs for current sub-frame */
  76.    spx_lsp_t *interp_qlsp;         /**< Interpolated quantized LSPs for current sub-frame */
  77.    spx_coef_t *interp_lpc;          /**< Interpolated LPCs for current sub-frame */
  78.    spx_coef_t *interp_qlpc;         /**< Interpolated quantized LPCs for current sub-frame */
  79.    spx_coef_t *bw_lpc1;             /**< Bandwidth-expanded version of LPCs (#1) */
  80.    spx_coef_t *bw_lpc2;             /**< Bandwidth-expanded version of LPCs (#2) */
  81.    spx_mem_t *mem_sp;              /**< Synthesis signal memory */
  82.    spx_mem_t *mem_sp2;
  83.    spx_mem_t *mem_sw;              /**< Perceptual signal memory */
  84.    spx_word32_t *pi_gain;
  85.    float  vbr_quality;         /**< Quality setting for VBR encoding */
  86.    int    vbr_enabled;         /**< 1 for enabling VBR, 0 otherwise */
  87.    int    abr_enabled;         /**< ABR setting (in bps), 0 if off */
  88.    float  abr_drift;
  89.    float  abr_drift2;
  90.    float  abr_count;
  91.    int    vad_enabled;         /**< 1 for enabling VAD, 0 otherwise */
  92.    float  relative_quality;
  93.    int    encode_submode;
  94.    const SpeexSubmode * const *submodes;
  95.    int    submodeID;
  96.    int    submodeSelect;
  97.    int    complexity;
  98.    int    sampling_rate;
  99. } SBEncState;
  100. /**Structure representing the full state of the sub-band decoder*/
  101. typedef struct SBDecState {
  102.    const SpeexMode *mode;            /**< Pointer to the mode (containing for vtable info) */
  103.    void *st_low;               /**< State of the low-band (narrowband) encoder */
  104.    int    full_frame_size;
  105.    int    frame_size;
  106.    int    subframeSize;
  107.    int    nbSubframes;
  108.    int    lpcSize;
  109.    int    first;
  110.    int    sampling_rate;
  111.    int    lpc_enh_enabled;
  112.    char  *stack;
  113.    spx_sig_t *x0d, *x1d;
  114.    spx_sig_t *high;
  115.    spx_sig_t *y0, *y1;
  116.    spx_word32_t *g0_mem, *g1_mem;
  117.    spx_sig_t *exc;
  118.    spx_lsp_t *qlsp;
  119.    spx_lsp_t *old_qlsp;
  120.    spx_lsp_t *interp_qlsp;
  121.    spx_coef_t *interp_qlpc;
  122.    spx_mem_t *mem_sp;
  123.    spx_word32_t *pi_gain;
  124.    int    encode_submode;
  125.    const SpeexSubmode * const *submodes;
  126.    int    submodeID;
  127. } SBDecState;
  128. /**Initializes encoder state*/
  129. void *sb_encoder_init(const SpeexMode *m);
  130. /**De-allocates encoder state resources*/
  131. void sb_encoder_destroy(void *state);
  132. /**Encodes one frame*/
  133. int sb_encode(void *state, void *in, SpeexBits *bits);
  134. /**Initializes decoder state*/
  135. void *sb_decoder_init(const SpeexMode *m);
  136. /**De-allocates decoder state resources*/
  137. void sb_decoder_destroy(void *state);
  138. /**Decodes one frame*/
  139. int sb_decode(void *state, SpeexBits *bits, void *out);
  140. int sb_encoder_ctl(void *state, int request, void *ptr);
  141. int sb_decoder_ctl(void *state, int request, void *ptr);
  142. #endif