Displaying 7 results from an estimated 7 matches for "speex_std_high_mode_request_handler".
2007 Aug 06
2
Attempting to shrink speex: Are these functions necessary?
...c:
lsp_quant_nb
lsp_unquant_nb
lsp_quant_high
lsp_unquant_high
In speex.c:
speex_encoder_destroy
speex_decoder_destroy
speex_encode
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...
U...
2005 Sep 03
2
Library export file for Win32 (patch)
...peex_bits_write_whole_bytes
-speex_bits_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_deco...
2007 Aug 07
1
Attempting to shrink speex: Are these functions necessary?
...er_destroy
> speex_encode
> speex_decode
> nb_mode_query
> wb_mode_query
> speex_lib_ctl
No need for that if you're not using them in 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_...
2007 Aug 07
1
Attempting to shrink speex: Are these functions necessary?
...In speex.c:
> speex_encoder_destroy
> speex_decoder_destroy
> speex_encode
> 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
>
>
&...
2007 Aug 07
0
Attempting to shrink speex: Are these functions necessary?
...gt;> In speex.c: speex_encoder_destroy speex_decoder_destroy
>> speex_encode 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
>>
>>
>&g...
2008 Mar 29
0
GCC/ELF Visibility patch
...return 0;
}
-int speex_std_low_mode_request_handler(SpeexBits *bits, void *state, void *data)
+EXPORT int speex_std_low_mode_request_handler(SpeexBits *bits, void *state, void *data)
{
spx_int32_t m;
m = speex_bits_unpack_unsigned(bits, 4);
@@ -88,7 +88,7 @@
return 0;
}
-int speex_std_high_mode_request_handler(SpeexBits *bits, void *state, void *data)
+EXPORT int speex_std_high_mode_request_handler(SpeexBits *bits, void *state, void *data)
{
spx_int32_t m;
m = speex_bits_unpack_unsigned(bits, 4);
@@ -97,7 +97,7 @@
}
#ifndef DISABLE_VBR
-int speex_std_vbr_request_handler(SpeexBits *bits, void...
2008 Mar 29
2
GCC/ELF Visibility patch (fwd)
...return 0;
}
-int speex_std_low_mode_request_handler(SpeexBits *bits, void *state, void *data)
+EXPORT int speex_std_low_mode_request_handler(SpeexBits *bits, void *state, void *data)
{
spx_int32_t m;
m = speex_bits_unpack_unsigned(bits, 4);
@@ -88,7 +88,7 @@
return 0;
}
-int speex_std_high_mode_request_handler(SpeexBits *bits, void *state, void *data)
+EXPORT int speex_std_high_mode_request_handler(SpeexBits *bits, void *state, void *data)
{
spx_int32_t m;
m = speex_bits_unpack_unsigned(bits, 4);
@@ -97,7 +97,7 @@
}
#ifndef DISABLE_VBR
-int speex_std_vbr_request_handler(SpeexBits *bits, void...