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

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2002 Jean-Marc Valin */
  2. /**
  3.    @file modes.h
  4.    @brief Describes the different modes of the codec
  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 MODES_H
  35. #define MODES_H
  36. #include <speex/speex.h>
  37. #include <speex/speex_bits.h>
  38. #include "misc.h"
  39. #define NB_SUBMODES 16
  40. #define NB_SUBMODE_BITS 4
  41. #define SB_SUBMODES 8
  42. #define SB_SUBMODE_BITS 3
  43. /** Quantizes LSPs */
  44. typedef void (*lsp_quant_func)(spx_lsp_t *, spx_lsp_t *, int, SpeexBits *);
  45. /** Decodes quantized LSPs */
  46. typedef void (*lsp_unquant_func)(spx_lsp_t *, int, SpeexBits *);
  47. /** Long-term predictor quantization */
  48. typedef int (*ltp_quant_func)(spx_sig_t *, spx_sig_t *, spx_coef_t *, spx_coef_t *, 
  49.                               spx_coef_t *, spx_sig_t *, const void *, int, int, spx_word16_t, 
  50.                               int, int, SpeexBits*, char *, spx_sig_t *, spx_word16_t *, int, int, int);
  51. /** Long-term un-quantize */
  52. typedef void (*ltp_unquant_func)(spx_sig_t *, int, int, spx_word16_t, const void *, int, int *,
  53.                                  spx_word16_t *, SpeexBits*, char*, int, int, spx_word16_t, int);
  54. /** Innovation quantization function */
  55. typedef void (*innovation_quant_func)(spx_sig_t *, spx_coef_t *, spx_coef_t *, spx_coef_t *, const void *, int, int, 
  56.                                       spx_sig_t *, spx_word16_t *, SpeexBits *, char *, int, int);
  57. /** Innovation unquantization function */
  58. typedef void (*innovation_unquant_func)(spx_sig_t *, const void *, int, SpeexBits*, char *);
  59. /** Description of a Speex sub-mode (wither narrowband or wideband */
  60. typedef struct SpeexSubmode {
  61.    int     lbr_pitch;          /**< Set to -1 for "normal" modes, otherwise encode pitch using a global pitch and allowing a +- lbr_pitch variation (for low not-rates)*/
  62.    int     forced_pitch_gain;  /**< Use the same (forced) pitch gain for all sub-frames */
  63.    int     have_subframe_gain; /**< Number of bits to use as sub-frame innovation gain */
  64.    int     double_codebook;    /**< Apply innovation quantization twice for higher quality (and higher bit-rate)*/
  65.    /*LSP functions*/
  66.    lsp_quant_func    lsp_quant; /**< LSP quantization function */
  67.    lsp_unquant_func  lsp_unquant; /**< LSP unquantization function */
  68.    /*Lont-term predictor functions*/
  69.    ltp_quant_func    ltp_quant; /**< Long-term predictor (pitch) quantizer */
  70.    ltp_unquant_func  ltp_unquant; /**< Long-term predictor (pitch) un-quantizer */
  71.    const void             *ltp_params; /**< Pitch parameters (options) */
  72.    /*Quantization of innovation*/
  73.    innovation_quant_func innovation_quant; /**< Innovation quantization */
  74.    innovation_unquant_func innovation_unquant; /**< Innovation un-quantization */
  75.    const void             *innovation_params; /**< Innovation quantization parameters*/
  76.    /*Synthesis filter enhancement*/
  77.    spx_word16_t      lpc_enh_k1; /**< Enhancer constant */
  78.    spx_word16_t      lpc_enh_k2; /**< Enhancer constant */
  79.    spx_word16_t      lpc_enh_k3; /**< Enhancer constant */
  80.    spx_word16_t      comb_gain;  /**< Gain of enhancer comb filter */
  81.    int               bits_per_frame; /**< Number of bits per frame after encoding*/
  82. } SpeexSubmode;
  83. /** Struct defining the encoding/decoding mode*/
  84. typedef struct SpeexNBMode {
  85.    int     frameSize;      /**< Size of frames used for encoding */
  86.    int     subframeSize;   /**< Size of sub-frames used for encoding */
  87.    int     lpcSize;        /**< Order of LPC filter */
  88.    int     pitchStart;     /**< Smallest pitch value allowed */
  89.    int     pitchEnd;       /**< Largest pitch value allowed */
  90.    spx_word16_t gamma1;    /**< Perceptual filter parameter #1 */
  91.    spx_word16_t gamma2;    /**< Perceptual filter parameter #2 */
  92.    float   lag_factor;     /**< Lag-windowing parameter */
  93.    float   lpc_floor;      /**< Noise floor for LPC analysis */
  94. #ifdef EPIC_48K
  95.    int     lbr48k;         /**< 1 for the special 4.8 kbps mode */
  96. #endif
  97.    const SpeexSubmode *submodes[NB_SUBMODES]; /**< Sub-mode data for the mode */
  98.    int     defaultSubmode; /**< Default sub-mode to use when encoding */
  99.    int     quality_map[11]; /**< Mode corresponding to each quality setting */
  100. } SpeexNBMode;
  101. /** Struct defining the encoding/decoding mode for SB-CELP (wideband) */
  102. typedef struct SpeexSBMode {
  103.    const SpeexMode *nb_mode;    /**< Embedded narrowband mode */
  104.    int     frameSize;     /**< Size of frames used for encoding */
  105.    int     subframeSize;  /**< Size of sub-frames used for encoding */
  106.    int     lpcSize;       /**< Order of LPC filter */
  107.    int     bufSize;       /**< Signal buffer size in encoder */
  108.    spx_word16_t gamma1;   /**< Perceptual filter parameter #1 */
  109.    spx_word16_t gamma2;   /**< Perceptual filter parameter #1 */
  110.    float   lag_factor;    /**< Lag-windowing parameter */
  111.    float   lpc_floor;     /**< Noise floor for LPC analysis */
  112.    float   folding_gain;
  113.    const SpeexSubmode *submodes[SB_SUBMODES]; /**< Sub-mode data for the mode */
  114.    int     defaultSubmode; /**< Default sub-mode to use when encoding */
  115.    int     low_quality_map[11]; /**< Mode corresponding to each quality setting */
  116.    int     quality_map[11]; /**< Mode corresponding to each quality setting */
  117.    const float (*vbr_thresh)[11];
  118.    int     nb_modes;
  119. } SpeexSBMode;
  120. int speex_encode_native(void *state, spx_word16_t *in, SpeexBits *bits);
  121. int speex_decode_native(void *state, SpeexBits *bits, spx_word16_t *out);
  122. int nb_mode_query(const void *mode, int request, void *ptr);
  123. int wb_mode_query(const void *mode, int request, void *ptr);
  124. #endif