OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SpeexMode
(Results
1 - 11
of
11
) sorted by null
/external/speex/include/speex/
speex.h
215
struct
SpeexMode
;
221
typedef void *(*encoder_init_func)(const struct
SpeexMode
*mode);
233
typedef void *(*decoder_init_func)(const struct
SpeexMode
*mode);
249
typedef struct
SpeexMode
{
290
}
SpeexMode
;
301
void *speex_encoder_init(const
SpeexMode
*mode);
345
void *speex_decoder_init(const
SpeexMode
*mode);
390
int speex_mode_query(const
SpeexMode
*mode, int request, void *ptr);
400
extern const
SpeexMode
speex_nb_mode;
403
extern const
SpeexMode
speex_wb_mode
[
all
...]
speex_header.h
50
struct
SpeexMode
;
78
void speex_init_header(SpeexHeader *header, int rate, int nb_channels, const struct
SpeexMode
*m);
/external/speex/libspeex/
speex.c
51
EXPORT void *speex_encoder_init(const
SpeexMode
*mode)
56
EXPORT void *speex_decoder_init(const
SpeexMode
*mode)
63
(*((
SpeexMode
**)state))->enc_destroy(state);
68
(*((
SpeexMode
**)state))->dec_destroy(state);
75
return (*((
SpeexMode
**)state))->enc(state, in, bits);
80
return (*((
SpeexMode
**)state))->dec(state, bits, out);
103
return (*((
SpeexMode
**)state))->enc(state, short_in, bits);
109
SpeexMode
*mode;
110
mode = *(
SpeexMode
**)state;
121
ret = (*((
SpeexMode
**)state))->dec(state, bits, short_out)
[
all
...]
sb_celp.h
45
const
SpeexMode
*mode; /**< Pointer to the mode (containing for vtable info) */
100
const
SpeexMode
*mode; /**< Pointer to the mode (containing for vtable info) */
133
void *sb_encoder_init(const
SpeexMode
*m);
143
void *sb_decoder_init(const
SpeexMode
*m);
modes_wb.c
55
EXPORT const
SpeexMode
* const speex_mode_list[SPEEX_NB_MODES] = {&speex_nb_mode, &speex_wb_mode, &speex_uwb_mode};
203
EXPORT const
SpeexMode
speex_wb_mode = {
273
EXPORT const
SpeexMode
speex_uwb_mode = {
292
EXPORT const
SpeexMode
* speex_lib_get_mode (int mode)
nb_celp.h
51
const
SpeexMode
*mode; /**< Mode corresponding to the state */
124
const
SpeexMode
*mode; /**< Mode corresponding to the state */
178
void *nb_encoder_init(const
SpeexMode
*m);
188
void *nb_decoder_init(const
SpeexMode
*m);
modes.c
340
EXPORT const
SpeexMode
speex_nb_mode = {
358
EXPORT int speex_mode_query(const
SpeexMode
*mode, int request, void *ptr)
modes.h
136
const
SpeexMode
*nb_mode; /**< Embedded narrowband mode */
speex_header.c
86
EXPORT void speex_init_header(SpeexHeader *header, int rate, int nb_channels, const
SpeexMode
*m)
sb_celp.c
66
void *sb_encoder_init(const
SpeexMode
*m)
80
void *sb_decoder_init(const
SpeexMode
*m)
190
void *sb_encoder_init(const
SpeexMode
*m)
755
void *sb_decoder_init(const
SpeexMode
*m)
[
all
...]
nb_celp.c
114
void *nb_encoder_init(const
SpeexMode
*m)
924
void *nb_decoder_init(const
SpeexMode
*m)
[
all
...]
Completed in 146 milliseconds