search for: speex_set_low_mode

Displaying 5 results from an estimated 5 matches for "speex_set_low_mode".

2004 Aug 06
2
Speex modes
...MacOS X and Windows).. As it is now the user can set complexity (SPEEX_SET_COMPLEXITY) and quality (SPEEX_SET_QUALITY / SPEEX_SET_VBR_QUALITY) and to wether to use VBR or not. Will these options make it possible to produce all combinations of bitrates/qualities? Or should I also use SPEEX_SET_MODE/SPEEX_SET_LOW_MODE/SPEEX_SET_HIGH_MODE to accomplish this? /Pontus --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'speex-dev-request@xiph.org' containing only the word 'unsubscribe' in the...
2006 Feb 10
2
About wideband encode
Hi, all. I have two questions about wideband encoding. >From "testenc_wb.c"... 1) tmp=8; speex_encoder_ctl(st, SPEEX_SET_QUALITY, &tmp); tmp=3; speex_encoder_ctl(st, SPEEX_SET_HIGH_MODE, &tmp); tmp=6; speex_encoder_ctl(st, SPEEX_SET_LOW_MODE, &tmp); How to set 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...
2004 Aug 06
0
Speex modes
...it is now the user can set complexity > (SPEEX_SET_COMPLEXITY) and quality (SPEEX_SET_QUALITY / > SPEEX_SET_VBR_QUALITY) and to wether to use VBR or not. Will these > options > make it possible to produce all combinations of bitrates/qualities? Or > should I also use SPEEX_SET_MODE/SPEEX_SET_LOW_MODE/SPEEX_SET_HIGH_MODE > to > accomplish this? The first thing to know that setting quality from 0-10 is in fact a more user-friendly of setting the mode. That being said, for narrowband encoding, all modes are available with at least one quality setting (sometimes two quality settings point t...
2004 Aug 06
2
SV: Speex modes
...s it is now the user can set complexity > (SPEEX_SET_COMPLEXITY) and quality (SPEEX_SET_QUALITY / > SPEEX_SET_VBR_QUALITY) and to wether to use VBR or not. Will these > options > make it possible to produce all combinations of bitrates/qualities? Or > should I also use SPEEX_SET_MODE/SPEEX_SET_LOW_MODE/SPEEX_SET_HIGH_MODE > to > accomplish this? The first thing to know that setting quality from 0-10 is in fact a more user-friendly of setting the mode. That being said, for narrowband encoding, all modes are available with at least one quality setting (sometimes two quality settings point to...
2005 May 25
3
Speex on TI C6x, Problem with TI C5x Patch
...st->pitch_gain_buf_idx = 0; st->last_ol_gain = ol_gain; return 0; } int nb_encoder_ctl(void *state, int request, void *ptr) { EncState *st; st=(EncState*)state; switch(request) { case SPEEX_GET_FRAME_SIZE: (*(long*)ptr) = st->frameSize; break; case SPEEX_SET_LOW_MODE: case SPEEX_SET_MODE: st->submodeSelect = st->submodeID = (*(long*)ptr); break; case SPEEX_GET_LOW_MODE: case SPEEX_GET_MODE: (*(long*)ptr) = st->submodeID; break; case SPEEX_SET_VBR: st->vbr_enabled = (*(long*)ptr); break; case SPEEX_G...