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

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2002 Jean-Marc Valin*/
  2. /**
  3.   @file speex.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 SPEEX_H
  35. #define SPEEX_H
  36. #include "speex/speex_bits.h"
  37. #include "speex/speex_types.h"
  38. #ifdef __cplusplus
  39. extern "C" {
  40. #endif
  41. /* Values allowed for *ctl() requests */
  42. /** Set enhancement on/off (decoder only) */
  43. #define SPEEX_SET_ENH 0
  44. /** Get enhancement state (decoder only) */
  45. #define SPEEX_GET_ENH 1
  46. /*Would be SPEEX_SET_FRAME_SIZE, but it's (currently) invalid*/
  47. /** Obtain frame size used by encoder/decoder */
  48. #define SPEEX_GET_FRAME_SIZE 3
  49. /** Set quality value */
  50. #define SPEEX_SET_QUALITY 4
  51. /** Get current quality setting */
  52. /* #define SPEEX_GET_QUALITY 5 -- Doesn't make much sense, does it? */
  53. /** Set sub-mode to use */
  54. #define SPEEX_SET_MODE 6
  55. /** Get current sub-mode in use */
  56. #define SPEEX_GET_MODE 7
  57. /** Set low-band sub-mode to use (wideband only)*/
  58. #define SPEEX_SET_LOW_MODE 8
  59. /** Get current low-band mode in use (wideband only)*/
  60. #define SPEEX_GET_LOW_MODE 9
  61. /** Set high-band sub-mode to use (wideband only)*/
  62. #define SPEEX_SET_HIGH_MODE 10
  63. /** Get current high-band mode in use (wideband only)*/
  64. #define SPEEX_GET_HIGH_MODE 11
  65. /** Set VBR on (1) or off (0) */
  66. #define SPEEX_SET_VBR 12
  67. /** Get VBR status (1 for on, 0 for off) */
  68. #define SPEEX_GET_VBR 13
  69. /** Set quality value for VBR encoding (0-10) */
  70. #define SPEEX_SET_VBR_QUALITY 14
  71. /** Get current quality value for VBR encoding (0-10) */
  72. #define SPEEX_GET_VBR_QUALITY 15
  73. /** Set complexity of the encoder (0-10) */
  74. #define SPEEX_SET_COMPLEXITY 16
  75. /** Get current complexity of the encoder (0-10) */
  76. #define SPEEX_GET_COMPLEXITY 17
  77. /** Set bit-rate used by the encoder (or lower) */
  78. #define SPEEX_SET_BITRATE 18
  79. /** Get current bit-rate used by the encoder or decoder */
  80. #define SPEEX_GET_BITRATE 19
  81. /**Define a handler function for in-band Speex request*/
  82. #define SPEEX_SET_HANDLER 20
  83. /**Define a handler function for in-band user-defined request*/
  84. #define SPEEX_SET_USER_HANDLER 22
  85. /** Set sampling rate used in bit-rate computation */
  86. #define SPEEX_SET_SAMPLING_RATE 24
  87. /** Get sampling rate used in bit-rate computation */
  88. #define SPEEX_GET_SAMPLING_RATE 25
  89. /** Reset the encoder/decoder memories to zero*/
  90. #define SPEEX_RESET_STATE 26
  91. /** Get VBR info (mostly used internally) */
  92. #define SPEEX_GET_RELATIVE_QUALITY 29
  93. /** Set VAD status (1 for on, 0 for off) */
  94. #define SPEEX_SET_VAD 30
  95. /** Get VAD status (1 for on, 0 for off) */
  96. #define SPEEX_GET_VAD 31
  97. /** Set Average Bit-Rate (ABR) to n bits per seconds */
  98. #define SPEEX_SET_ABR 32
  99. /** Get Average Bit-Rate (ABR) setting (in bps) */
  100. #define SPEEX_GET_ABR 33
  101. /** Set DTX status (1 for on, 0 for off) */
  102. #define SPEEX_SET_DTX 34
  103. /** Get DTX status (1 for on, 0 for off) */
  104. #define SPEEX_GET_DTX 35
  105. /** Set submode encoding in each frame (1 for yes, 0 for no, setting to no breaks the standard) */
  106. #define SPEEX_SET_SUBMODE_ENCODING 36
  107. /** */
  108. #define SPEEX_GET_SUBMODE_ENCODING 37
  109. /*#define SPEEX_SET_LOOKAHEAD 38*/
  110. /** Returns the lookahead used by Speex */
  111. #define SPEEX_GET_LOOKAHEAD 39
  112. /** Sets tuning for packet-loss concealment (expected loss rate) */
  113. #define SPEEX_SET_PLC_TUNING 40
  114. /** Gets tuning for PLC */
  115. #define SPEEX_GET_PLC_TUNING 41
  116. /* Used internally, not to be used in applications */
  117. /** Used internally*/
  118. #define SPEEX_GET_PI_GAIN 100
  119. /** Used internally*/
  120. #define SPEEX_GET_EXC     101
  121. /** Used internally*/
  122. #define SPEEX_GET_INNOV   102
  123. /** Used internally*/
  124. #define SPEEX_GET_DTX_STATUS   103
  125. /* Preserving compatibility:*/
  126. /** Equivalent to SPEEX_SET_ENH */
  127. #define SPEEX_SET_PF 0
  128. /** Equivalent to SPEEX_GET_ENH */
  129. #define SPEEX_GET_PF 1
  130. /* Values allowed for mode queries */
  131. /** Query the frame size of a mode */
  132. #define SPEEX_MODE_FRAME_SIZE 0
  133. /** Query the size of an encoded frame for a particular sub-mode */
  134. #define SPEEX_SUBMODE_BITS_PER_FRAME 1
  135. #define SPEEX_LIB_GET_MAJOR_VERSION 1
  136. #define SPEEX_LIB_GET_MINOR_VERSION 3
  137. #define SPEEX_LIB_GET_MICRO_VERSION 5
  138. #define SPEEX_LIB_GET_EXTRA_VERSION 7
  139. #define SPEEX_LIB_GET_VERSION_STRING 9
  140. /*#define SPEEX_LIB_SET_ALLOC_FUNC 10
  141. #define SPEEX_LIB_GET_ALLOC_FUNC 11
  142. #define SPEEX_LIB_SET_FREE_FUNC 12
  143. #define SPEEX_LIB_GET_FREE_FUNC 13
  144. #define SPEEX_LIB_SET_WARNING_FUNC 14
  145. #define SPEEX_LIB_GET_WARNING_FUNC 15
  146. #define SPEEX_LIB_SET_ERROR_FUNC 16
  147. #define SPEEX_LIB_GET_ERROR_FUNC 17
  148. */
  149. /** Number of defined modes in Speex */
  150. #define SPEEX_NB_MODES 3
  151. /** modeID for the defined narrowband mode */
  152. #define SPEEX_MODEID_NB 0
  153. /** modeID for the defined wideband mode */
  154. #define SPEEX_MODEID_WB 1
  155. /** modeID for the defined ultra-wideband mode */
  156. #define SPEEX_MODEID_UWB 2
  157. #ifdef EPIC_48K
  158. /** modeID for the Epic 48K mode */
  159. #define SPEEX_MODEID_NB_48K 1000
  160. #endif
  161. struct SpeexMode;
  162. /* Prototypes for mode function pointers */
  163. /** Encoder state initialization function */
  164. typedef void *(*encoder_init_func)(const struct SpeexMode *mode);
  165. /** Encoder state destruction function */
  166. typedef void (*encoder_destroy_func)(void *st);
  167. /** Main encoding function */
  168. typedef int (*encode_func)(void *state, void *in, SpeexBits *bits);
  169. /** Function for controlling the encoder options */
  170. typedef int (*encoder_ctl_func)(void *state, int request, void *ptr);
  171. /** Decoder state initialization function */
  172. typedef void *(*decoder_init_func)(const struct SpeexMode *mode);
  173. /** Decoder state destruction function */
  174. typedef void (*decoder_destroy_func)(void *st);
  175. /** Main decoding function */
  176. typedef int  (*decode_func)(void *state, SpeexBits *bits, void *out);
  177. /** Function for controlling the decoder options */
  178. typedef int (*decoder_ctl_func)(void *state, int request, void *ptr);
  179. /** Query function for a mode */
  180. typedef int (*mode_query_func)(const void *mode, int request, void *ptr);
  181. /** Struct defining a Speex mode */ 
  182. typedef struct SpeexMode {
  183.    /** Pointer to the low-level mode data */
  184.    const void *mode;
  185.    /** Pointer to the mode query function */
  186.    mode_query_func query;
  187.    
  188.    /** The name of the mode (you should not rely on this to identify the mode)*/
  189.    const char *modeName;
  190.    /**ID of the mode*/
  191.    int modeID;
  192.    /**Version number of the bitstream (incremented every time we break
  193.     bitstream compatibility*/
  194.    int bitstream_version;
  195.    /** Pointer to encoder initialization function */
  196.    encoder_init_func enc_init;
  197.    /** Pointer to encoder destruction function */
  198.    encoder_destroy_func enc_destroy;
  199.    /** Pointer to frame encoding function */
  200.    encode_func enc;
  201.    /** Pointer to decoder initialization function */
  202.    decoder_init_func dec_init;
  203.    /** Pointer to decoder destruction function */
  204.    decoder_destroy_func dec_destroy;
  205.    /** Pointer to frame decoding function */
  206.    decode_func dec;
  207.    /** ioctl-like requests for encoder */
  208.    encoder_ctl_func enc_ctl;
  209.    /** ioctl-like requests for decoder */
  210.    decoder_ctl_func dec_ctl;
  211. } SpeexMode;
  212. /**
  213.  * Returns a handle to a newly created Speex encoder state structure. For now, 
  214.  * the "mode" argument can be &nb_mode or &wb_mode . In the future, more modes 
  215.  * may be added. Note that for now if you have more than one channels to 
  216.  * encode, you need one state per channel.
  217.  *
  218.  * @param mode The mode to use (either speex_nb_mode or speex_wb.mode) 
  219.  * @return A newly created encoder
  220.  */
  221. void *speex_encoder_init(const SpeexMode *mode);
  222. /** Frees all resources associated to an existing Speex encoder state. 
  223.  * @param state Encoder state to be destroyed */
  224. void speex_encoder_destroy(void *state);
  225. /** Uses an existing encoder state to encode one frame of speech pointed to by
  226.     "in". The encoded bit-stream is saved in "bits".
  227.  @param state Encoder state
  228.  @param in Frame that will be encoded with a +-2^15 range
  229.  @param bits Bit-stream where the data will be written
  230.  */
  231. int speex_encode(void *state, float *in, SpeexBits *bits);
  232. /** Uses an existing encoder state to encode one frame of speech pointed to by
  233.     "in". The encoded bit-stream is saved in "bits".
  234.  @param state Encoder state
  235.  @param in Frame that will be encoded with a +-2^15 range
  236.  @param bits Bit-stream where the data will be written
  237.  */
  238. int speex_encode_int(void *state, spx_int16_t *in, SpeexBits *bits);
  239. /** Used like the ioctl function to control the encoder parameters
  240.  *
  241.  * @param state Encoder state
  242.  * @param request ioctl-type request (one of the SPEEX_* macros)
  243.  * @param ptr Data exchanged to-from function
  244.  * @return 0 if frame needs not be transmitted (DTX only), 1 otherwise
  245.  */
  246. int speex_encoder_ctl(void *state, int request, void *ptr);
  247. /** Returns a handle to a newly created decoder state structure. For now, 
  248.  * the mode argument can be &nb_mode or &wb_mode . In the future, more modes
  249.  * may be added.  Note that for now if you have more than one channels to
  250.  * decode, you need one state per channel.
  251.  *
  252.  * @param mode Speex mode (one of speex_nb_mode or speex_wb_mode)
  253.  * @return A newly created decoder state
  254.  */ 
  255. void *speex_decoder_init(const SpeexMode *mode);
  256. /** Frees all resources associated to an existing decoder state.
  257.  *
  258.  * @param state State to be destroyed
  259.  */
  260. void speex_decoder_destroy(void *state);
  261. /** Uses an existing decoder state to decode one frame of speech from
  262.  * bit-stream bits. The output speech is saved written to out.
  263.  *
  264.  * @param state Decoder state
  265.  * @param bits Bit-stream from which to decode the frame (NULL if the packet was lost)
  266.  * @param out Where to write the decoded frame
  267.  * @return return status (0 for no error, -1 for end of stream, -2 other)
  268.  */
  269. int speex_decode(void *state, SpeexBits *bits, float *out);
  270. /** Uses an existing decoder state to decode one frame of speech from
  271.  * bit-stream bits. The output speech is saved written to out.
  272.  *
  273.  * @param state Decoder state
  274.  * @param bits Bit-stream from which to decode the frame (NULL if the packet was lost)
  275.  * @param out Where to write the decoded frame
  276.  * @return return status (0 for no error, -1 for end of stream, -2 other)
  277.  */
  278. int speex_decode_int(void *state, SpeexBits *bits, spx_int16_t *out);
  279. /** Used like the ioctl function to control the encoder parameters
  280.  *
  281.  * @param state Decoder state
  282.  * @param request ioctl-type request (one of the SPEEX_* macros)
  283.  * @param ptr Data exchanged to-from function
  284.  * @return 0 for no error, 1 if a terminator is reached, 2 for another error
  285.  */
  286. int speex_decoder_ctl(void *state, int request, void *ptr);
  287. /** Query function for mode information
  288.  *
  289.  * @param mode Speex mode
  290.  * @param request ioctl-type request (one of the SPEEX_* macros)
  291.  * @param ptr Data exchanged to-from function
  292.  */
  293. int speex_mode_query(const SpeexMode *mode, int request, void *ptr);
  294. /** Functions for controlling the behavior of libspeex
  295.  * @param request ioctl-type request (one of the SPEEX_LIB_* macros)
  296.  * @param ptr Data exchanged to-from function
  297.  */
  298. int speex_lib_ctl(int request, void *ptr);
  299. /** Default narrowband mode */
  300. extern const SpeexMode speex_nb_mode;
  301. /** Default wideband mode */
  302. extern const SpeexMode speex_wb_mode;
  303. /** Default "ultra-wideband" mode */
  304. extern const SpeexMode speex_uwb_mode;
  305. #ifdef EPIC_48K
  306. /** 4.8 kbps narrowband mode */
  307. extern const SpeexMode speex_nb_48k_mode;
  308. #endif
  309. /** List of all modes available */
  310. extern const SpeexMode * const speex_mode_list[SPEEX_NB_MODES];
  311. /** Obtain one of the modes available */
  312. const SpeexMode * speex_lib_get_mode (int mode);
  313. #ifdef __cplusplus
  314. }
  315. #endif
  316. #endif