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

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2002 Jean-Marc Valin & David Rowe
  2.    File: cb_search.h
  3.    Overlapped codebook search
  4.    Redistribution and use in source and binary forms, with or without
  5.    modification, are permitted provided that the following conditions
  6.    are met:
  7.    
  8.    - Redistributions of source code must retain the above copyright
  9.    notice, this list of conditions and the following disclaimer.
  10.    
  11.    - Redistributions in binary form must reproduce the above copyright
  12.    notice, this list of conditions and the following disclaimer in the
  13.    documentation and/or other materials provided with the distribution.
  14.    
  15.    - Neither the name of the Xiph.org Foundation nor the names of its
  16.    contributors may be used to endorse or promote products derived from
  17.    this software without specific prior written permission.
  18.    
  19.    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20.    ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21.    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22.    A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
  23.    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  24.    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  25.    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  26.    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  27.    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  28.    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  29.    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. */
  31. #ifndef CB_SEARCH_H
  32. #define CB_SEARCH_H
  33. #include <speex/speex_bits.h>
  34. #include "misc.h"
  35. typedef struct split_cb_params {
  36.    int     subvect_size;
  37.    int     nb_subvect;
  38.    const signed char  *shape_cb;
  39.    int     shape_bits;
  40.    int     have_sign;
  41. } split_cb_params;
  42. void split_cb_search_shape_sign(
  43. spx_sig_t target[], /* target vector */
  44. spx_coef_t ak[], /* LPCs for this subframe */
  45. spx_coef_t awk1[], /* Weighted LPCs for this subframe */
  46. spx_coef_t awk2[], /* Weighted LPCs for this subframe */
  47. const void *par,                      /* Codebook/search parameters*/
  48. int   p,                        /* number of LPC coeffs */
  49. int   nsf,                      /* number of samples in subframe */
  50. spx_sig_t *exc,
  51. spx_word16_t *r,
  52. SpeexBits *bits,
  53. char *stack,
  54. int   complexity,
  55. int   update_target
  56. );
  57. void split_cb_shape_sign_unquant(
  58. spx_sig_t *exc,
  59. const void *par,                      /* non-overlapping codebook */
  60. int   nsf,                      /* number of samples in subframe */
  61. SpeexBits *bits,
  62. char *stack
  63. );
  64. void noise_codebook_quant(
  65. spx_sig_t target[], /* target vector */
  66. spx_coef_t ak[], /* LPCs for this subframe */
  67. spx_coef_t awk1[], /* Weighted LPCs for this subframe */
  68. spx_coef_t awk2[], /* Weighted LPCs for this subframe */
  69. const void *par,                      /* Codebook/search parameters*/
  70. int   p,                        /* number of LPC coeffs */
  71. int   nsf,                      /* number of samples in subframe */
  72. spx_sig_t *exc,
  73. spx_word16_t *r,
  74. SpeexBits *bits,
  75. char *stack,
  76. int   complexity,
  77. int   update_target
  78. );
  79. void noise_codebook_unquant(
  80. spx_sig_t *exc,
  81. const void *par,                      /* non-overlapping codebook */
  82. int   nsf,                      /* number of samples in subframe */
  83. SpeexBits *bits,
  84. char *stack
  85. );
  86. #endif