Home | History | Annotate | Download | only in silk

Lines Matching refs:opus_int16

36 static OPUS_INLINE opus_int16 *silk_resampler_private_IIR_FIR_INTERPOL(
37 opus_int16 *out,
38 opus_int16 *buf,
44 opus_int16 *buf_ptr;
60 *out++ = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( res_Q15, 15 ) );
67 opus_int16 out[], /* O Output signal */
68 const opus_int16 in[], /* I Input signal */
75 VARDECL( opus_int16, buf );
78 ALLOC( buf, 2 * S->batchSize + RESAMPLER_ORDER_FIR_12, opus_int16 );
81 silk_memcpy( buf, S->sFIR.i16, RESAMPLER_ORDER_FIR_12 * sizeof( opus_int16 ) );
98 silk_memcpy( buf, &buf[ nSamplesIn << 1 ], RESAMPLER_ORDER_FIR_12 * sizeof( opus_int16 ) );
105 silk_memcpy( S->sFIR.i16, &buf[ nSamplesIn << 1 ], RESAMPLER_ORDER_FIR_12 * sizeof( opus_int16 ) );