Home | History | Annotate | Download | only in libspeex

Lines Matching refs:WORD2INT

92 #define WORD2INT(x) ((x) < -32767 ? -32768 : ((x) > 32766 ? 32767 : (x)))  
94 #define WORD2INT(x) ((x) < -32767.5f ? -32768 : ((x) > 32766.5f ? 32767 : floor(.5+(x))))
984 out[i*C+chan] = WORD2INT(tmp_out);