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

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2002 Jean-Marc Valin
  2.    File speex_callbacks.c
  3.    Callback handling and in-band signalling
  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 <speex/speex_callbacks.h>
  35. #include "misc.h"
  36. int speex_inband_handler(SpeexBits *bits, SpeexCallback *callback_list, void *state)
  37. {
  38.    int id;
  39.    SpeexCallback *callback;
  40.    /*speex_bits_advance(bits, 5);*/
  41.    id=speex_bits_unpack_unsigned(bits, 4);
  42.    callback = callback_list+id;
  43.    if (callback->func)
  44.    {
  45.       return callback->func(bits, state, callback->data);
  46.    } else
  47.       /*If callback is not registered, skip the right number of bits*/
  48.    {
  49.       int adv;
  50.       if (id<2)
  51.          adv = 1;
  52.       else if (id<8)
  53.          adv = 4;
  54.       else if (id<10)
  55.          adv = 8;
  56.       else if (id<12)
  57.          adv = 16;
  58.       else if (id<14)
  59.          adv = 32;
  60.       else 
  61.          adv = 64;
  62.       speex_bits_advance(bits, adv);
  63.    }
  64.    return 0;
  65. }
  66. int speex_std_mode_request_handler(SpeexBits *bits, void *state, void *data)
  67. {
  68.    int m;
  69.    m = speex_bits_unpack_unsigned(bits, 4);
  70.    speex_encoder_ctl(data, SPEEX_SET_MODE, &m);
  71.    return 0;
  72. }
  73. int speex_std_low_mode_request_handler(SpeexBits *bits, void *state, void *data)
  74. {
  75.    int m;
  76.    m = speex_bits_unpack_unsigned(bits, 4);
  77.    speex_encoder_ctl(data, SPEEX_SET_LOW_MODE, &m);
  78.    return 0;
  79. }
  80. int speex_std_high_mode_request_handler(SpeexBits *bits, void *state, void *data)
  81. {
  82.    int m;
  83.    m = speex_bits_unpack_unsigned(bits, 4);
  84.    speex_encoder_ctl(data, SPEEX_SET_HIGH_MODE, &m);
  85.    return 0;
  86. }
  87. int speex_std_vbr_request_handler(SpeexBits *bits, void *state, void *data)
  88. {
  89.    int vbr;
  90.    vbr = speex_bits_unpack_unsigned(bits, 1);
  91.    speex_encoder_ctl(data, SPEEX_SET_VBR, &vbr);
  92.    return 0;
  93. }
  94. int speex_std_enh_request_handler(SpeexBits *bits, void *state, void *data)
  95. {
  96.    int enh;
  97.    enh = speex_bits_unpack_unsigned(bits, 1);
  98.    speex_decoder_ctl(data, SPEEX_SET_ENH, &enh);
  99.    return 0;
  100. }
  101. int speex_std_vbr_quality_request_handler(SpeexBits *bits, void *state, void *data)
  102. {
  103.    int qual;
  104.    qual = speex_bits_unpack_unsigned(bits, 4);
  105.    speex_encoder_ctl(data, SPEEX_SET_VBR_QUALITY, &qual);
  106.    return 0;
  107. }
  108. int speex_std_char_handler(SpeexBits *bits, void *state, void *data)
  109. {
  110.    unsigned char ch;
  111.    ch = speex_bits_unpack_unsigned(bits, 8);
  112.    _speex_putc(ch, data);
  113.    /*printf("speex_std_char_handler ch=%xn", ch);*/
  114.    return 0;
  115. }
  116. /* Default handler for user callbacks: skip it */
  117. int speex_default_user_handler(SpeexBits *bits, void *state, void *data)
  118. {
  119.    int req_size = speex_bits_unpack_unsigned(bits, 4);
  120.    speex_bits_advance(bits, 5+8*req_size);
  121.    return 0;
  122. }