Displaying 1 result from an estimated 1 matches for "vbr_mode".
Did you mean:
vbo_mode
2004 Aug 06
1
Speex configuration
...e
- use constant bitrate and set it using mode parameter
- SPEEX_SET_MODE
- cbr_quality
- use constant bitrate and set it using quality parameter
- SPEEX_SET_QUALITY
- vbr_bitrate
- use variable bitrate and set it using bitrate parameter
- SPEEX_SET_BITRATE + SPEEX_SET_VBR
- vbr_mode
- use variable bitrate and set it using mode parameter
- SPEEX_SET_MODE + SPEEX_SET_VBR
- vbr_quality
- use variable bitrate and set it using quality parameter
- SPEEX_SET_VBR_QUALITY
If I look at the code, vbr_bitrate and vbr_mode probably
doens't work (vbr uses vbr_quality an...