search for: speex_std_char_handler

Displaying 8 results from an estimated 8 matches for "speex_std_char_handler".

2007 Aug 06
2
Attempting to shrink speex: Are these functions necessary?
...speex_decode nb_mode_query wb_mode_query speex_lib_ctl In speex_callbacks.c: speex_inband_handler speex_std_mode_request_handler speex_std_low_mode_request_handler speex_std_high_mode_request_handler speex_std_vbr_request_handler speex_std_enh_request_handler speex_std_vbr_quality_request_handler speex_std_char_handler speex_default_user_handler In vbr.c: vbr_analysis vbr_destroy In vq.c: vq_index vq_nbest_sign -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/speex-dev/attachments/20070806/81ab5672/attachment.htm
2006 Feb 10
2
About wideband encode
...high_mode and low_mode, if quality is set to '9'? When I set quality '9' / high_mode '3' / low_mode '6', encode as like quality is '8'. And what does high/low mode value in encoding process? 2) callback.callback_id = SPEEX_INBAND_CHAR; callback.func = speex_std_char_handler; callback.data = stderr; speex_decoder_ctl(dec, SPEEX_SET_HANDLER, &callback); callback.callback_id = SPEEX_INBAND_MODE_REQUEST; callback.func = speex_std_mode_request_handler; callback.data = st; speex_decoder_ctl(dec, SPEEX_SET_HANDLER, &callback); Are these codes es...
2005 Sep 03
2
Library export file for Win32 (patch)
...ts_pack -speex_bits_unpack_signed -speex_bits_unpack_unsigned -speex_bits_nbytes -speex_bits_peek_unsigned -speex_bits_peek -speex_bits_advance -speex_bits_remaining -speex_bits_insert_terminator -speex_inband_handler -speex_std_mode_request_handler -speex_std_high_mode_request_handler -speex_std_char_handler -speex_default_user_handler -speex_std_low_mode_request_handler -speex_std_vbr_request_handler -speex_std_enh_request_handler -speex_std_vbr_quality_request_handler -speex_init_header -speex_header_to_packet -speex_packet_to_header -speex_encode_stereo -speex_decode_stereo -speex_std_ste...
2007 Aug 07
1
Attempting to shrink speex: Are these functions necessary?
...your code. > In speex_callbacks.c: > speex_inband_handler > speex_std_mode_request_handler > speex_std_low_mode_request_handler > speex_std_high_mode_request_handler > speex_std_vbr_request_handler > speex_std_enh_request_handler > speex_std_vbr_quality_request_handler > speex_std_char_handler > speex_default_user_handler No need for that. > In vbr.c: > vbr_analysis > vbr_destroy No need for that. > In vq.c: > vq_index > vq_nbest_sign No need for those. So yes, there's a lot of stuff you can remove. You can also get rid of the stereo preprocess, mdf files....
2007 Aug 07
1
Attempting to shrink speex: Are these functions necessary?
..._ctl > > In speex_callbacks.c: > speex_inband_handler > speex_std_mode_request_handler > speex_std_low_mode_request_handler > speex_std_high_mode_request_handler > speex_std_vbr_request_handler > speex_std_enh_request_handler > speex_std_vbr_quality_request_handler > speex_std_char_handler > speex_default_user_handler > > In vbr.c: > vbr_analysis > vbr_destroy > > In vq.c: > vq_index > vq_nbest_sign > > > > > > ------------------------------------------------------------------------ > > ___________________________________...
2007 Aug 07
0
Attempting to shrink speex: Are these functions necessary?
...t;> >> In speex_callbacks.c: speex_inband_handler >> speex_std_mode_request_handler speex_std_low_mode_request_handler >> speex_std_high_mode_request_handler speex_std_vbr_request_handler >> speex_std_enh_request_handler speex_std_vbr_quality_request_handler >> speex_std_char_handler speex_default_user_handler >> >> In vbr.c: vbr_analysis vbr_destroy >> >> In vq.c: vq_index vq_nbest_sign >> >> >> >> >> >> ------------------------------------------------------------------------ >> >> >> ______...
2008 Mar 29
0
GCC/ELF Visibility patch
...ex_std_vbr_quality_request_handler(SpeexBits *bits, void *state, void *data) +EXPORT int speex_std_vbr_quality_request_handler(SpeexBits *bits, void *state, void *data) { float qual; qual = speex_bits_unpack_unsigned(bits, 4); @@ -124,7 +124,7 @@ } #endif /* #ifndef DISABLE_VBR */ -int speex_std_char_handler(SpeexBits *bits, void *state, void *data) +EXPORT int speex_std_char_handler(SpeexBits *bits, void *state, void *data) { unsigned char ch; ch = speex_bits_unpack_unsigned(bits, 8); @@ -136,7 +136,7 @@ /* Default handler for user callbacks: skip it */ -int speex_default_user_handler(Sp...
2008 Mar 29
2
GCC/ELF Visibility patch (fwd)
...ex_std_vbr_quality_request_handler(SpeexBits *bits, void *state, void *data) +EXPORT int speex_std_vbr_quality_request_handler(SpeexBits *bits, void *state, void *data) { float qual; qual = speex_bits_unpack_unsigned(bits, 4); @@ -124,7 +124,7 @@ } #endif /* #ifndef DISABLE_VBR */ -int speex_std_char_handler(SpeexBits *bits, void *state, void *data) +EXPORT int speex_std_char_handler(SpeexBits *bits, void *state, void *data) { unsigned char ch; ch = speex_bits_unpack_unsigned(bits, 8); @@ -136,7 +136,7 @@ /* Default handler for user callbacks: skip it */ -int speex_default_user_handler(Sp...