Lines Matching refs:int16_t
45 static __inline int16_t __ssat16(int32_t amp) in __ssat16()
47 int16_t amp16; in __ssat16()
50 amp16 = (int16_t) amp; in __ssat16()
59 static __inline int16_t __ssat16( int32_t val) in __ssat16()
67 return (int16_t)res; in __ssat16()
202 static int16_t wl[8] = {-60, -30, 58, 172, 334, 538, 1198, 3042 };
203 static int16_t rl42[16] = {0, 7, 6, 5, 4, 3, 2, 1, 7, 6, 5, 4, 3, 2, 1, 0 };
204 static int16_t ilb[32] =
213 static int16_t wh[3] = {0, -214, 798};
214 static int16_t rh2[4] = {2, 1, 2, 1};
215 static int16_t qm2[4] = {-7408, -1616, 7408, 1616};
216 static int16_t qm4[16] =
236 static int16_t qm6[64] =
255 static int16_t qmf_coeffs_even[12] =
259 static int16_t qmf_coeffs_odd[12] =
264 uint32_t g722_decode(g722_decode_state_t *s, int16_t amp[], const uint8_t g722_data[], int len, uin… in g722_decode()
406 xout1 = NLDECOMPRESS_PREPROCESS_SAMPLE_WITH_GAIN((int16_t) __ssat16(xout1 >> 11), gain); in g722_decode()
407 xout2 = NLDECOMPRESS_PREPROCESS_SAMPLE_WITH_GAIN((int16_t) __ssat16(xout2 >> 11), gain); in g722_decode()
410 amp[outlen++] = ((int16_t) (xout1 >> 4) + 2048); in g722_decode()
411 amp[outlen++] = ((int16_t) (xout2 >> 4) + 2048); in g722_decode()