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

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2002 Jean-Marc Valin 
  2.    File: speex.c
  3.    Basic Speex functions
  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. #ifdef HAVE_CONFIG_H
  32. #include "config.h"
  33. #endif
  34. #include "modes.h"
  35. #include <math.h>
  36. #ifndef NULL
  37. #define NULL 0
  38. #endif
  39. #define MAX_IN_SAMPLES 640
  40. void *speex_encoder_init(const SpeexMode *mode)
  41. {
  42.    return mode->enc_init(mode);
  43. }
  44. void *speex_decoder_init(const SpeexMode *mode)
  45. {
  46.    return mode->dec_init(mode);
  47. }
  48. void speex_encoder_destroy(void *state)
  49. {
  50.    (*((SpeexMode**)state))->enc_destroy(state);
  51. }
  52. void speex_decoder_destroy(void *state)
  53. {
  54.    (*((SpeexMode**)state))->dec_destroy(state);
  55. }
  56. int speex_encode_native(void *state, spx_word16_t *in, SpeexBits *bits)
  57. {
  58.    return (*((SpeexMode**)state))->enc(state, in, bits);
  59. }
  60. int speex_decode_native(void *state, SpeexBits *bits, spx_word16_t *out)
  61. {
  62.    return (*((SpeexMode**)state))->dec(state, bits, out);
  63. }
  64. #ifdef FIXED_POINT
  65. int speex_encode(void *state, float *in, SpeexBits *bits)
  66. {
  67.    int i;
  68.    int N;
  69.    spx_int16_t short_in[MAX_IN_SAMPLES];
  70.    speex_encoder_ctl(state, SPEEX_GET_FRAME_SIZE, &N);
  71.    for (i=0;i<N;i++)
  72.    {
  73.       if (in[i]>32767.f)
  74.          short_in[i] = 32767;
  75.       else if (in[i]<-32768.f)
  76.          short_in[i] = -32768;
  77.       else
  78.          short_in[i] = (spx_int16_t)floor(.5+in[i]);
  79.    }
  80.    return (*((SpeexMode**)state))->enc(state, short_in, bits);
  81. }
  82. int speex_encode_int(void *state, spx_int16_t *in, SpeexBits *bits)
  83. {
  84.    SpeexMode *mode;
  85.    mode = *(SpeexMode**)state;
  86.    return (mode)->enc(state, in, bits);
  87. }
  88. int speex_decode(void *state, SpeexBits *bits, float *out)
  89. {
  90.    int i, ret;
  91.    int N;
  92.    spx_int16_t short_out[MAX_IN_SAMPLES];
  93.    speex_decoder_ctl(state, SPEEX_GET_FRAME_SIZE, &N);
  94.    ret = (*((SpeexMode**)state))->dec(state, bits, short_out);
  95.    for (i=0;i<N;i++)
  96.       out[i] = short_out[i];
  97.    return ret;
  98. }
  99. int speex_decode_int(void *state, SpeexBits *bits, spx_int16_t *out)
  100. {
  101.    SpeexMode *mode = *(SpeexMode**)state;
  102.    return (mode)->dec(state, bits, out);
  103. }
  104. #else
  105. int speex_encode(void *state, float *in, SpeexBits *bits)
  106. {
  107.    return (*((SpeexMode**)state))->enc(state, in, bits);
  108. }
  109. int speex_encode_int(void *state, spx_int16_t *in, SpeexBits *bits)
  110. {
  111.    int i;
  112.    int N;
  113.    float float_in[MAX_IN_SAMPLES];
  114.    speex_encoder_ctl(state, SPEEX_GET_FRAME_SIZE, &N);
  115.    for (i=0;i<N;i++)
  116.       float_in[i] = in[i];
  117.    return (*((SpeexMode**)state))->enc(state, float_in, bits);
  118. }
  119. int speex_decode(void *state, SpeexBits *bits, float *out)
  120. {
  121.    return (*((SpeexMode**)state))->dec(state, bits, out);
  122. }
  123. int speex_decode_int(void *state, SpeexBits *bits, spx_int16_t *out)
  124. {
  125.    int i;
  126.    int N;
  127.    float float_out[MAX_IN_SAMPLES];
  128.    int ret;
  129.    speex_decoder_ctl(state, SPEEX_GET_FRAME_SIZE, &N);
  130.    ret = (*((SpeexMode**)state))->dec(state, bits, float_out);
  131.    for (i=0;i<N;i++)
  132.    {
  133.       if (float_out[i]>32767.f)
  134.          out[i] = 32767;
  135.       else if (float_out[i]<-32768.f)
  136.          out[i] = -32768;
  137.       else
  138.          out[i] = (spx_int16_t)floor(.5+float_out[i]);
  139.    }
  140.    return ret;
  141. }
  142. #endif
  143. int speex_encoder_ctl(void *state, int request, void *ptr)
  144. {
  145.    return (*((SpeexMode**)state))->enc_ctl(state, request, ptr);
  146. }
  147. int speex_decoder_ctl(void *state, int request, void *ptr)
  148. {
  149.    return (*((SpeexMode**)state))->dec_ctl(state, request, ptr);
  150. }
  151. int nb_mode_query(const void *mode, int request, void *ptr)
  152. {
  153.    const SpeexNBMode *m = (const SpeexNBMode*)mode;
  154.    
  155.    switch (request)
  156.    {
  157.    case SPEEX_MODE_FRAME_SIZE:
  158.       *((int*)ptr)=m->frameSize;
  159.       break;
  160.    case SPEEX_SUBMODE_BITS_PER_FRAME:
  161.       if (*((int*)ptr)==0)
  162.          *((int*)ptr) = NB_SUBMODE_BITS+1;
  163.       else if (m->submodes[*((int*)ptr)]==NULL)
  164.          *((int*)ptr) = -1;
  165.       else
  166.          *((int*)ptr) = m->submodes[*((int*)ptr)]->bits_per_frame;
  167.       break;
  168.    default:
  169.       speex_warning_int("Unknown nb_mode_query request: ", request);
  170.       return -1;
  171.    }
  172.    return 0;
  173. }
  174. int wb_mode_query(const void *mode, int request, void *ptr)
  175. {
  176.    const SpeexSBMode *m = (const SpeexSBMode*)mode;
  177.    switch (request)
  178.    {
  179.    case SPEEX_MODE_FRAME_SIZE:
  180.       *((int*)ptr)=2*m->frameSize;
  181.       break;
  182.    case SPEEX_SUBMODE_BITS_PER_FRAME:
  183.       if (*((int*)ptr)==0)
  184.          *((int*)ptr) = SB_SUBMODE_BITS+1;
  185.       else if (m->submodes[*((int*)ptr)]==NULL)
  186.          *((int*)ptr) = -1;
  187.       else
  188.          *((int*)ptr) = m->submodes[*((int*)ptr)]->bits_per_frame;
  189.       break;
  190.    default:
  191.       speex_warning_int("Unknown wb_mode_query request: ", request);
  192.       return -1;
  193.    }
  194.    return 0;
  195. }
  196. int speex_lib_ctl(int request, void *ptr)
  197. {
  198.    switch (request)
  199.    {
  200.       case SPEEX_LIB_GET_MAJOR_VERSION:
  201.          *((int*)ptr) = SPEEX_MAJOR_VERSION;
  202.          break;
  203.       case SPEEX_LIB_GET_MINOR_VERSION:
  204.          *((int*)ptr) = SPEEX_MINOR_VERSION;
  205.          break;
  206.       case SPEEX_LIB_GET_MICRO_VERSION:
  207.          *((int*)ptr) = SPEEX_MICRO_VERSION;
  208.          break;
  209.       case SPEEX_LIB_GET_EXTRA_VERSION:
  210.          *((const char**)ptr) = SPEEX_EXTRA_VERSION;
  211.          break;
  212.       case SPEEX_LIB_GET_VERSION_STRING:
  213.          *((const char**)ptr) = SPEEX_VERSION;
  214.          break;
  215.       /*case SPEEX_LIB_SET_ALLOC_FUNC:
  216.          break;
  217.       case SPEEX_LIB_GET_ALLOC_FUNC:
  218.          break;
  219.       case SPEEX_LIB_SET_FREE_FUNC:
  220.          break;
  221.       case SPEEX_LIB_GET_FREE_FUNC:
  222.          break;*/
  223.       default:
  224.          speex_warning_int("Unknown wb_mode_query request: ", request);
  225.          return -1;
  226.    }
  227.    return 0;
  228. }