search for: speex_resampler_get_output_latency

Displaying 7 results from an estimated 7 matches for "speex_resampler_get_output_latency".

2009 Jun 30
3
Delays estimation in Speex algorithms
JM, I also need to know the precise delays from Speex but I used the SPEEX_GET_LOOKAHEAD control requests to determine them (plus the "speex_resampler_get_output_latency" function from the resampler). The returned values from the Speex lookahead request don't seem to match with the values you gave Alexander. Am I doing this wrong? Thanks, John Ridges speex-dev-request at xiph.org wrote: > > Alexander Chemeris a ?crit : > >> I want to...
2009 Jun 30
3
Delays estimation in Speex algorithms
...isn't otherwise accounted for? John Ridges Jean-Marc Valin wrote: > Quoting John Ridges <jridges at masque.com>: > >> I also need to know the precise delays from Speex but I used the >> SPEEX_GET_LOOKAHEAD control requests to determine them (plus the >> "speex_resampler_get_output_latency" function from the resampler). The >> returned values from the Speex lookahead request don't seem to match >> with the values you gave Alexander. Am I doing this wrong? Thanks, >> > > What's the difference between what I wrote and what you get from Speex? &...
2009 Jun 30
0
Delays estimation in Speex algorithms
Quoting John Ridges <jridges at masque.com>: > I also need to know the precise delays from Speex but I used the > SPEEX_GET_LOOKAHEAD control requests to determine them (plus the > "speex_resampler_get_output_latency" function from the resampler). The > returned values from the Speex lookahead request don't seem to match > with the values you gave Alexander. Am I doing this wrong? Thanks, What's the difference between what I wrote and what you get from Speex? Jean-Marc > John Ridges...
2009 Jun 30
0
Delays estimation in Speex algorithms
...> John Ridges > > Jean-Marc Valin wrote: > > Quoting John Ridges <jridges at masque.com>: > > > >> I also need to know the precise delays from Speex but I used the > >> SPEEX_GET_LOOKAHEAD control requests to determine them (plus the > >> "speex_resampler_get_output_latency" function from the resampler). The > >> returned values from the Speex lookahead request don't seem to match > >> with the values you gave Alexander. Am I doing this wrong? Thanks, > >> > > > > What's the difference between what I wrote and what y...
2008 Mar 29
0
GCC/ELF Visibility patch
...peex_resampler_get_output_stride(SpeexResamplerState *st, spx_uint32_t *stride) { *stride = st->out_stride; } -int speex_resampler_get_input_latency(SpeexResamplerState *st) +EXPORT int speex_resampler_get_input_latency(SpeexResamplerState *st) { return st->filt_len / 2; } -int speex_resampler_get_output_latency(SpeexResamplerState *st) +EXPORT int speex_resampler_get_output_latency(SpeexResamplerState *st) { return ((st->filt_len / 2) * st->den_rate + (st->num_rate >> 1)) / st->num_rate; } -int speex_resampler_skip_zeros(SpeexResamplerState *st) +EXPORT int speex_resampler_skip_ze...
2008 May 03
0
Resampler, memory only variant
...ampler.h (revision 14829) +++ include/speex/speex_resampler.h (working copy) @@ -73,6 +73,8 @@ #define speex_resampler_get_output_stride CAT_PREFIX(RANDOM_PREFIX,_resampler_get_output_stride) #define speex_resampler_get_input_latency CAT_PREFIX(RANDOM_PREFIX,_resampler_get_input_latency) #define speex_resampler_get_output_latency CAT_PREFIX(RANDOM_PREFIX,_resampler_get_output_latency) +#define speex_resampler_set_buffer_size CAT_PREFIX(RANDOM_PREFIX,_resampler_set_buffer_size) +#define speex_resampler_get_buffer_size CAT_PREFIX(RANDOM_PREFIX,_resampler_get_buffer_size) #define speex_resampler_skip_zeros CAT_PREFIX(RANDOM_P...
2008 Mar 29
2
GCC/ELF Visibility patch (fwd)
...peex_resampler_get_output_stride(SpeexResamplerState *st, spx_uint32_t *stride) { *stride = st->out_stride; } -int speex_resampler_get_input_latency(SpeexResamplerState *st) +EXPORT int speex_resampler_get_input_latency(SpeexResamplerState *st) { return st->filt_len / 2; } -int speex_resampler_get_output_latency(SpeexResamplerState *st) +EXPORT int speex_resampler_get_output_latency(SpeexResamplerState *st) { return ((st->filt_len / 2) * st->den_rate + (st->num_rate >> 1)) / st->num_rate; } -int speex_resampler_skip_zeros(SpeexResamplerState *st) +EXPORT int speex_resampler_skip_ze...