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

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2002 Jean-Marc Valin */
  2. /**
  3.     @file nb_celp.h
  4.     @brief Narrowband CELP encoder/decoder
  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 NB_CELP_H
  35. #define NB_CELP_H
  36. #include "modes.h"
  37. #include <speex/speex_bits.h>
  38. #include <speex/speex_callbacks.h>
  39. #include "vbr.h"
  40. #include "filters.h"
  41. /**Structure representing the full state of the narrowband encoder*/
  42. typedef struct EncState {
  43.    const SpeexMode *mode;       /**< Mode corresponding to the state */
  44.    int    first;          /**< Is this the first frame? */
  45.    int    frameSize;      /**< Size of frames */
  46.    int    subframeSize;   /**< Size of sub-frames */
  47.    int    nbSubframes;    /**< Number of sub-frames */
  48.    int    windowSize;     /**< Analysis (LPC) window length */
  49.    int    lpcSize;        /**< LPC order */
  50.    int    min_pitch;      /**< Minimum pitch value allowed */
  51.    int    max_pitch;      /**< Maximum pitch value allowed */
  52.    int    safe_pitch;     /**< Don't use too large values for pitch (in case we lose a packet) */
  53.    int    bounded_pitch;  /**< Next frame should not rely on previous frames for pitch */
  54.    int    ol_pitch;       /**< Open-loop pitch */
  55.    int    ol_voiced;      /**< Open-loop voiced/non-voiced decision */
  56.    int   *pitch;
  57. #ifdef EPIC_48K
  58.    int    lbr_48k;
  59. #endif
  60.    spx_word16_t  gamma1;         /**< Perceptual filter: A(z/gamma1) */
  61.    spx_word16_t  gamma2;         /**< Perceptual filter: A(z/gamma2) */
  62.    float  lag_factor;     /**< Lag windowing Gaussian width */
  63.    float  lpc_floor;      /**< Noise floor multiplier for A[0] in LPC analysis*/
  64.    char  *stack;          /**< Pseudo-stack allocation for temporary memory */
  65.    spx_sig_t *inBuf;          /**< Input buffer (original signal) */
  66.    spx_sig_t *frame;          /**< Start of original frame */
  67.    spx_sig_t *excBuf;         /**< Excitation buffer */
  68.    spx_sig_t *exc;            /**< Start of excitation frame */
  69.    spx_sig_t *swBuf;          /**< Weighted signal buffer */
  70.    spx_sig_t *sw;             /**< Start of weighted signal frame */
  71.    spx_sig_t *innov;          /**< Innovation for the frame */
  72.    spx_word16_t *window;         /**< Temporary (Hanning) window */
  73.    spx_word16_t *autocorr;       /**< auto-correlation */
  74.    spx_word16_t *lagWindow;      /**< Window applied to auto-correlation */
  75.    spx_coef_t *lpc;            /**< LPCs for current frame */
  76.    spx_lsp_t *lsp;            /**< LSPs for current frame */
  77.    spx_lsp_t *qlsp;           /**< Quantized LSPs for current frame */
  78.    spx_lsp_t *old_lsp;        /**< LSPs for previous frame */
  79.    spx_lsp_t *old_qlsp;       /**< Quantized LSPs for previous frame */
  80.    spx_lsp_t *interp_lsp;     /**< Interpolated LSPs */
  81.    spx_lsp_t *interp_qlsp;    /**< Interpolated quantized LSPs */
  82.    spx_coef_t *interp_lpc;     /**< Interpolated LPCs */
  83.    spx_coef_t *interp_qlpc;    /**< Interpolated quantized LPCs */
  84.    spx_coef_t *bw_lpc1;        /**< LPCs after bandwidth expansion by gamma1 for perceptual weighting*/
  85.    spx_coef_t *bw_lpc2;        /**< LPCs after bandwidth expansion by gamma2 for perceptual weighting*/
  86.    spx_mem_t *mem_sp;         /**< Filter memory for signal synthesis */
  87.    spx_mem_t *mem_sw;         /**< Filter memory for perceptually-weighted signal */
  88.    spx_mem_t *mem_sw_whole;   /**< Filter memory for perceptually-weighted signal (whole frame)*/
  89.    spx_mem_t *mem_exc;        /**< Filter memory for excitation (whole frame) */
  90.    spx_word32_t *pi_gain;        /**< Gain of LPC filter at theta=pi (fe/2) */
  91.    VBRState *vbr;         /**< State of the VBR data */
  92.    float  vbr_quality;    /**< Quality setting for VBR encoding */
  93.    float  relative_quality; /**< Relative quality that will be needed by VBR */
  94.    int    vbr_enabled;    /**< 1 for enabling VBR, 0 otherwise */
  95.    int    vad_enabled;    /**< 1 for enabling VAD, 0 otherwise */
  96.    int    dtx_enabled;    /**< 1 for enabling DTX, 0 otherwise */
  97.    int    dtx_count;      /**< Number of consecutive DTX frames */
  98.    int    abr_enabled;    /**< ABR setting (in bps), 0 if off */
  99.    float  abr_drift;
  100.    float  abr_drift2;
  101.    float  abr_count;
  102.    int    complexity;     /**< Complexity setting (0-10 from least complex to most complex) */
  103.    int    sampling_rate;
  104.    int    plc_tuning;
  105.    int    encode_submode;
  106.    const SpeexSubmode * const *submodes; /**< Sub-mode data */
  107.    int    submodeID;      /**< Activated sub-mode */
  108.    int    submodeSelect;  /**< Mode chosen by the user (may differ from submodeID if VAD is on) */
  109. } EncState;
  110. /**Structure representing the full state of the narrowband decoder*/
  111. typedef struct DecState {
  112.    const SpeexMode *mode;       /**< Mode corresponding to the state */
  113.    int    first;          /**< Is this the first frame? */
  114.    int    count_lost;     /**< Was the last frame lost? */
  115.    int    frameSize;      /**< Size of frames */
  116.    int    subframeSize;   /**< Size of sub-frames */
  117.    int    nbSubframes;    /**< Number of sub-frames */
  118.    int    lpcSize;        /**< LPC order */
  119.    int    min_pitch;      /**< Minimum pitch value allowed */
  120.    int    max_pitch;      /**< Maximum pitch value allowed */
  121.    int    sampling_rate;
  122. #ifdef EPIC_48K
  123.    int    lbr_48k;
  124. #endif
  125.    spx_word16_t  last_ol_gain;   /**< Open-loop gain for previous frame */
  126.    char  *stack;          /**< Pseudo-stack allocation for temporary memory */
  127.    spx_sig_t *inBuf;          /**< Input buffer (original signal) */
  128.    spx_sig_t *frame;          /**< Start of original frame */
  129.    spx_sig_t *excBuf;         /**< Excitation buffer */
  130.    spx_sig_t *exc;            /**< Start of excitation frame */
  131.    spx_sig_t *innov;          /**< Innovation for the frame */
  132.    spx_lsp_t *qlsp;           /**< Quantized LSPs for current frame */
  133.    spx_lsp_t *old_qlsp;       /**< Quantized LSPs for previous frame */
  134.    spx_lsp_t *interp_qlsp;    /**< Interpolated quantized LSPs */
  135.    spx_coef_t *interp_qlpc;    /**< Interpolated quantized LPCs */
  136.    spx_mem_t *mem_sp;         /**< Filter memory for synthesis signal */
  137.    spx_word32_t *pi_gain;        /**< Gain of LPC filter at theta=pi (fe/2) */
  138.    int    last_pitch;     /**< Pitch of last correctly decoded frame */
  139.    spx_word16_t  last_pitch_gain; /**< Pitch gain of last correctly decoded frame */
  140.    spx_word16_t  pitch_gain_buf[3];  /**< Pitch gain of last decoded frames */
  141.    int    pitch_gain_buf_idx; /**< Tail of the buffer */
  142.    spx_int32_t seed;          /** Seed used for random number generation */
  143.    
  144.    int    encode_submode;
  145.    const SpeexSubmode * const *submodes; /**< Sub-mode data */
  146.    int    submodeID;      /**< Activated sub-mode */
  147.    int    lpc_enh_enabled; /**< 1 when LPC enhancer is on, 0 otherwise */
  148.    CombFilterMem *comb_mem;
  149.    SpeexCallback speex_callbacks[SPEEX_MAX_CALLBACKS];
  150.    SpeexCallback user_callback;
  151.    /*Vocoder data*/
  152.    float  voc_m1;
  153.    float  voc_m2;
  154.    float  voc_mean;
  155.    int    voc_offset;
  156.    int    dtx_enabled;
  157. } DecState;
  158. /** Initializes encoder state*/
  159. void *nb_encoder_init(const SpeexMode *m);
  160. /** De-allocates encoder state resources*/
  161. void nb_encoder_destroy(void *state);
  162. /** Encodes one frame*/
  163. int nb_encode(void *state, void *in, SpeexBits *bits);
  164. /** Initializes decoder state*/
  165. void *nb_decoder_init(const SpeexMode *m);
  166. /** De-allocates decoder state resources*/
  167. void nb_decoder_destroy(void *state);
  168. /** Decodes one frame*/
  169. int nb_decode(void *state, SpeexBits *bits, void *out);
  170. /** ioctl-like function for controlling a narrowband encoder */
  171. int nb_encoder_ctl(void *state, int request, void *ptr);
  172. /** ioctl-like function for controlling a narrowband decoder */
  173. int nb_decoder_ctl(void *state, int request, void *ptr);
  174. #endif