1
0
Fork 0
forked from len0rd/rockbox

Remove some unneeded floating point usage, port some needed floating point code to fixed point.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15547 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thom Johansen 2007-11-09 01:11:34 +00:00
parent c586739763
commit e43c1ac338
3 changed files with 17 additions and 9 deletions

View file

@ -114,9 +114,12 @@ int speex_std_enh_request_handler(SpeexBits *bits, void *state, void *data)
int speex_std_vbr_quality_request_handler(SpeexBits *bits, void *state, void *data)
{
/* We don't use this, get rid of the float reference */
#if 0
float qual;
qual = speex_bits_unpack_unsigned(bits, 4);
speex_encoder_ctl(data, SPEEX_SET_VBR_QUALITY, &qual);
#endif
return 0;
}