📄 sb_celp.c
字号:
/* Copyright (C) 2002 Jean-Marc Valin File: sb_celp.c Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - Neither the name of the Xiph.org Foundation nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.*/#ifdef HAVE_CONFIG_H#include "config.h"#endif#include <math.h>
#include "sb_celp.h"#include "stdlib.h"#include "filters.h"#include "lpc.h"#include "lsp.h"#include "stack_alloc.h"#include "cb_search.h"#include "quant_lsp.h"#include "vq.h"#include "ltp.h"#include "misc.h"/* Default size for the encoder and decoder stack (can be changed at compile time). This does not apply when using variable-size arrays or alloca. */#ifndef SB_ENC_STACK#define SB_ENC_STACK (10000*sizeof(spx_sig_t))#endif#ifndef SB_DEC_STACK#define SB_DEC_STACK (6000*sizeof(spx_sig_t))#endif#ifdef DISABLE_WIDEBANDvoid *sb_encoder_init(const SpeexMode *m){ speex_error("Wideband and Ultra-wideband are disabled"); return NULL;}void sb_encoder_destroy(void *state){ speex_error("Wideband and Ultra-wideband are disabled");}int sb_encode(void *state, void *vin, SpeexBits *bits){ speex_error("Wideband and Ultra-wideband are disabled"); return -2;}void *sb_decoder_init(const SpeexMode *m){ speex_error("Wideband and Ultra-wideband are disabled"); return NULL;}void sb_decoder_destroy(void *state){ speex_error("Wideband and Ultra-wideband are disabled");}int sb_decode(void *state, SpeexBits *bits, void *vout){ speex_error("Wideband and Ultra-wideband are disabled"); return -2;}int sb_encoder_ctl(void *state, int request, void *ptr){ speex_error("Wideband and Ultra-wideband are disabled"); return -2;}int sb_decoder_ctl(void *state, int request, void *ptr){ speex_error("Wideband and Ultra-wideband are disabled"); return -2;}#else#ifndef M_PI#define M_PI 3.14159265358979323846 /* pi */#endif#define sqr(x) ((x)*(x))#define SUBMODE(x) st->submodes[st->submodeID]->x#ifdef FIXED_POINTstatic const spx_word16_t gc_quant_bound[16] = {125, 164, 215, 282, 370, 484, 635, 832, 1090, 1428, 1871, 2452, 3213, 4210, 5516, 7228};#define LSP_MARGIN 410#define LSP_DELTA1 6553#define LSP_DELTA2 1638#else#define LSP_MARGIN .05#define LSP_DELTA1 .2#define LSP_DELTA2 .05#endif#define QMF_ORDER 64#ifdef FIXED_POINTstatic const spx_word16_t h0[64] = {2, -7, -7, 18, 15, -39, -25, 75, 35, -130, -41, 212, 38, -327, -17, 483, -32, -689, 124, 956, -283, -1307, 543, 1780, -973, -2467, 1733, 3633, -3339, -6409, 9059, 30153, 30153, 9059, -6409, -3339, 3633, 1733, -2467, -973, 1780, 543, -1307, -283, 956, 124, -689, -32, 483, -17, -327, 38, 212, -41, -130, 35, 75, -25, -39, 15, 18, -7, -7, 2};static const spx_word16_t h1[64] = {2, 7, -7, -18, 15, 39, -25, -75, 35, 130, -41, -212, 38, 327, -17, -483, -32, 689, 124, -956, -283, 1307, 543, -1780, -973, 2467, 1733, -3633, -3339, 6409, 9059, -30153, 30153, -9059, -6409, 3339, 3633, -1733, -2467, 973, 1780, -543, -1307, 283, 956, -124, -689, 32, 483, 17, -327, -38, 212, 41, -130, -35, 75, 25, -39, -15, 18, 7, -7, -2};#elsestatic const float h0[64] = { 3.596189e-05, -0.0001123515, -0.0001104587, 0.0002790277, 0.0002298438, -0.0005953563, -0.0003823631, 0.00113826, 0.0005308539, -0.001986177, -0.0006243724, 0.003235877, 0.0005743159, -0.004989147, -0.0002584767, 0.007367171, -0.0004857935, -0.01050689, 0.001894714, 0.01459396, -0.004313674, -0.01994365, 0.00828756, 0.02716055, -0.01485397, -0.03764973, 0.026447, 0.05543245, -0.05095487, -0.09779096, 0.1382363, 0.4600981, 0.4600981, 0.1382363, -0.09779096, -0.05095487, 0.05543245, 0.026447, -0.03764973, -0.01485397, 0.02716055, 0.00828756, -0.01994365, -0.004313674, 0.01459396, 0.001894714, -0.01050689, -0.0004857935, 0.007367171, -0.0002584767, -0.004989147, 0.0005743159, 0.003235877, -0.0006243724, -0.001986177, 0.0005308539, 0.00113826, -0.0003823631, -0.0005953563, 0.0002298438, 0.0002790277, -0.0001104587, -0.0001123515, 3.596189e-05};static const float h1[64] = { 3.596189e-05, 0.0001123515, -0.0001104587, -0.0002790277, 0.0002298438, 0.0005953563, -0.0003823631, -0.00113826, 0.0005308539, 0.001986177, -0.0006243724, -0.003235877, 0.0005743159, 0.004989147, -0.0002584767, -0.007367171, -0.0004857935, 0.01050689, 0.001894714, -0.01459396, -0.004313674, 0.01994365, 0.00828756, -0.02716055, -0.01485397, 0.03764973, 0.026447, -0.05543245, -0.05095487, 0.09779096, 0.1382363, -0.4600981, 0.4600981, -0.1382363, -0.09779096, 0.05095487, 0.05543245, -0.026447, -0.03764973, 0.01485397, 0.02716055, -0.00828756, -0.01994365, 0.004313674, 0.01459396, -0.001894714, -0.01050689, 0.0004857935, 0.007367171, 0.0002584767, -0.004989147, -0.0005743159, 0.003235877, 0.0006243724, -0.001986177, -0.0005308539, 0.00113826, 0.0003823631, -0.0005953563, -0.0002298438, 0.0002790277, 0.0001104587, -0.0001123515, -3.596189e-05};#endifstatic void mix_and_saturate(spx_word32_t *x0, spx_word32_t *x1, spx_word16_t *out, int len){ int i; for (i=0;i<len;i++) { spx_word32_t tmp;#ifdef FIXED_POINT tmp=PSHR(x0[i]-x1[i],SIG_SHIFT-1);#else tmp=2*(x0[i]-x1[i]);#endif if (tmp>32767) out[i] = 32767; else if (tmp<-32767) out[i] = -32767; else out[i] = tmp; }}void *sb_encoder_init(const SpeexMode *m){ int i; SBEncState *st; const SpeexSBMode *mode; st = (SBEncState*)speex_alloc(sizeof(SBEncState)); if (!st) return NULL;#if defined(VAR_ARRAYS) || defined (USE_ALLOCA) st->stack = NULL;#else st->stack = (char*)speex_alloc_scratch(SB_ENC_STACK);#endif st->mode = m; mode = (const SpeexSBMode*)m->mode; st->st_low = speex_encoder_init(mode->nb_mode); st->full_frame_size = 2*mode->frameSize; st->frame_size = mode->frameSize; st->subframeSize = mode->subframeSize; st->nbSubframes = mode->frameSize/mode->subframeSize; st->windowSize = st->frame_size*3/2; st->lpcSize=mode->lpcSize; st->bufSize=mode->bufSize; st->encode_submode = 1; st->submodes=mode->submodes; st->submodeSelect = st->submodeID=mode->defaultSubmode; i=9; speex_encoder_ctl(st->st_low, SPEEX_SET_QUALITY, &i); st->lag_factor = mode->lag_factor; st->lpc_floor = mode->lpc_floor; st->gamma1=mode->gamma1; st->gamma2=mode->gamma2; st->first=1; st->x0d=speex_alloc((st->frame_size)*sizeof(spx_sig_t)); st->x1d=speex_alloc((st->frame_size)*sizeof(spx_sig_t)); st->high=speex_alloc((st->full_frame_size)*sizeof(spx_sig_t)); st->y0=speex_alloc((st->full_frame_size)*sizeof(spx_sig_t)); st->y1=speex_alloc((st->full_frame_size)*sizeof(spx_sig_t)); st->h0_mem=speex_alloc((QMF_ORDER)*sizeof(spx_word16_t)); st->h1_mem=speex_alloc((QMF_ORDER)*sizeof(spx_word16_t)); st->g0_mem=speex_alloc((QMF_ORDER)*sizeof(spx_word32_t)); st->g1_mem=speex_alloc((QMF_ORDER)*sizeof(spx_word32_t)); st->buf=speex_alloc((st->windowSize)*sizeof(spx_sig_t)); st->excBuf=speex_alloc((st->bufSize)*sizeof(spx_sig_t)); st->exc = st->excBuf + st->bufSize - st->windowSize; st->res=speex_alloc((st->frame_size)*sizeof(spx_sig_t)); st->sw=speex_alloc((st->frame_size)*sizeof(spx_sig_t)); st->target=speex_alloc((st->frame_size)*sizeof(spx_sig_t)); /*Asymmetric "pseudo-Hamming" window*/ { int part1, part2; part1 = st->subframeSize*7/2; part2 = st->subframeSize*5/2; st->window = speex_alloc((st->windowSize)*sizeof(spx_word16_t)); for (i=0;i<part1;i++) st->window[i]=(spx_word16_t)(SIG_SCALING*(.54-.46*cos(M_PI*i/part1))); for (i=0;i<part2;i++) st->window[part1+i]=(spx_word16_t)(SIG_SCALING*(.54+.46*cos(M_PI*i/part2))); } st->lagWindow = speex_alloc((st->lpcSize+1)*sizeof(spx_word16_t)); for (i=0;i<st->lpcSize+1;i++) st->lagWindow[i]=16384*exp(-.5*sqr(2*M_PI*st->lag_factor*i)); st->autocorr = speex_alloc((st->lpcSize+1)*sizeof(spx_word16_t)); st->lpc = speex_alloc(st->lpcSize*sizeof(spx_coef_t)); st->bw_lpc1 = speex_alloc(st->lpcSize*sizeof(spx_coef_t)); st->bw_lpc2 = speex_alloc(st->lpcSize*sizeof(spx_coef_t)); st->lsp = speex_alloc(st->lpcSize*sizeof(spx_lsp_t)); st->qlsp = speex_alloc(st->lpcSize*sizeof(spx_lsp_t)); st->old_lsp = speex_alloc(st->lpcSize*sizeof(spx_lsp_t)); st->old_qlsp = speex_alloc(st->lpcSize*sizeof(spx_lsp_t)); st->interp_lsp = speex_alloc(st->lpcSize*sizeof(spx_lsp_t)); st->interp_qlsp = speex_alloc(st->lpcSize*sizeof(spx_lsp_t)); st->interp_lpc = speex_alloc(st->lpcSize*sizeof(spx_coef_t)); st->interp_qlpc = speex_alloc(st->lpcSize*sizeof(spx_coef_t)); st->pi_gain = speex_alloc((st->nbSubframes)*sizeof(spx_word32_t)); st->mem_sp = speex_alloc((st->lpcSize)*sizeof(spx_mem_t)); st->mem_sp2 = speex_alloc((st->lpcSize)*sizeof(spx_mem_t)); st->mem_sw = speex_alloc((st->lpcSize)*sizeof(spx_mem_t)); st->vbr_quality = 8; st->vbr_enabled = 0; st->vad_enabled = 0; st->abr_enabled = 0; st->relative_quality=0; st->complexity=2; speex_encoder_ctl(st->st_low, SPEEX_GET_SAMPLING_RATE, &st->sampling_rate); st->sampling_rate*=2;#ifdef ENABLE_VALGRIND VALGRIND_MAKE_READABLE(st, (st->stack-(char*)st));#endif return st;}void sb_encoder_destroy(void *state){ SBEncState *st=(SBEncState*)state; speex_encoder_destroy(st->st_low);#if !(defined(VAR_ARRAYS) || defined (USE_ALLOCA)) speex_free_scratch(st->stack);#endif speex_free(st->x0d); speex_free(st->x1d); speex_free(st->high); speex_free(st->y0); speex_free(st->y1); speex_free(st->h0_mem); speex_free(st->h1_mem); speex_free(st->g0_mem); speex_free(st->g1_mem); speex_free(st->buf); speex_free(st->excBuf); speex_free(st->res); speex_free(st->sw); speex_free(st->target); speex_free(st->window); speex_free(st->lagWindow); speex_free(st->autocorr); speex_free(st->lpc); speex_free(st->bw_lpc1); speex_free(st->bw_lpc2); speex_free(st->lsp); speex_free(st->qlsp); speex_free(st->old_lsp); speex_free(st->old_qlsp); speex_free(st->interp_lsp); speex_free(st->interp_qlsp); speex_free(st->interp_lpc); speex_free(st->interp_qlpc); speex_free(st->pi_gain); speex_free(st->mem_sp); speex_free(st->mem_sp2); speex_free(st->mem_sw); speex_free(st);}int sb_encode(void *state, void *vin, SpeexBits *bits){ SBEncState *st; int i, roots, sub; char *stack; VARDECL(spx_mem_t *mem); VARDECL(spx_sig_t *innov); VARDECL(spx_word16_t *syn_resp); VARDECL(spx_word32_t *low_pi_gain); VARDECL(spx_sig_t *low_exc); VARDECL(spx_sig_t *low_innov); const SpeexSBMode *mode; int dtx; spx_word16_t *in = vin; st = (SBEncState*)state; stack=st->stack;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -