Searched refs:opus_int16 (Results 1 - 25 of 257) sorted by relevance

1234567891011

/external/chromium_org/third_party/opus/src/silk/
H A Dresampler_rom.h45 static const opus_int16 silk_resampler_down2_0 = 9872;
46 static const opus_int16 silk_resampler_down2_1 = 39809 - 65536;
49 static const opus_int16 silk_resampler_up2_hq_0[ 3 ] = { 1746, 14986, 39083 - 65536 };
50 static const opus_int16 silk_resampler_up2_hq_1[ 3 ] = { 6854, 25769, 55542 - 65536 };
53 extern const opus_int16 silk_Resampler_3_4_COEFS[ 2 + 3 * RESAMPLER_DOWN_ORDER_FIR0 / 2 ];
54 extern const opus_int16 silk_Resampler_2_3_COEFS[ 2 + 2 * RESAMPLER_DOWN_ORDER_FIR0 / 2 ];
55 extern const opus_int16 silk_Resampler_1_2_COEFS[ 2 + RESAMPLER_DOWN_ORDER_FIR1 / 2 ];
56 extern const opus_int16 silk_Resampler_1_3_COEFS[ 2 + RESAMPLER_DOWN_ORDER_FIR2 / 2 ];
57 extern const opus_int16 silk_Resampler_1_4_COEFS[ 2 + RESAMPLER_DOWN_ORDER_FIR2 / 2 ];
58 extern const opus_int16 silk_Resampler_1_6_COEF
[all...]
H A Dresampler_rom.c40 /* const opus_int16 silk_resampler_up2_hq_notch[ 4 ] = { 9634, -7012, 7209, 30474 }; */
43 silk_DWORD_ALIGN const opus_int16 silk_Resampler_3_4_COEFS[ 2 + 3 * RESAMPLER_DOWN_ORDER_FIR0 / 2 ] = {
50 silk_DWORD_ALIGN const opus_int16 silk_Resampler_2_3_COEFS[ 2 + 2 * RESAMPLER_DOWN_ORDER_FIR0 / 2 ] = {
56 silk_DWORD_ALIGN const opus_int16 silk_Resampler_1_2_COEFS[ 2 + RESAMPLER_DOWN_ORDER_FIR1 / 2 ] = {
61 silk_DWORD_ALIGN const opus_int16 silk_Resampler_1_3_COEFS[ 2 + RESAMPLER_DOWN_ORDER_FIR2 / 2 ] = {
66 silk_DWORD_ALIGN const opus_int16 silk_Resampler_1_4_COEFS[ 2 + RESAMPLER_DOWN_ORDER_FIR2 / 2 ] = {
71 silk_DWORD_ALIGN const opus_int16 silk_Resampler_1_6_COEFS[ 2 + RESAMPLER_DOWN_ORDER_FIR2 / 2 ] = {
76 silk_DWORD_ALIGN const opus_int16 silk_Resampler_2_3_COEFS_LQ[ 2 + 2 * 2 ] = {
83 silk_DWORD_ALIGN const opus_int16 silk_resampler_frac_FIR_12[ 12 ][ RESAMPLER_ORDER_FIR_12 / 2 ] = {
H A Dtable_LSF_cos.c36 const opus_int16 silk_LSFCosTab_FIX_Q12[ LSF_COS_TAB_SZ_FIX + 1 ] = {
H A Dresampler_private.h47 opus_int16 out[], /* O Output signal */
48 const opus_int16 in[], /* I Input signal */
55 opus_int16 out[], /* O Output signal */
56 const opus_int16 in[], /* I Input signal */
63 opus_int16 *out, /* O Output signal [ 2 * len ] */
64 const opus_int16 *in, /* I Input signal [ len ] */
71 opus_int16 *out, /* O Output signal [ 2 * len ] */
72 const opus_int16 *in, /* I Input signal [ len ] */
80 const opus_int16 in[], /* I Input signal */
81 const opus_int16 A_Q1
[all...]
H A Dinterpolate.c36 opus_int16 xi[ MAX_LPC_ORDER ], /* O interpolated vector */
37 const opus_int16 x0[ MAX_LPC_ORDER ], /* I first vector */
38 const opus_int16 x1[ MAX_LPC_ORDER ], /* I second vector */
49 xi[ i ] = (opus_int16)silk_ADD_RSHIFT( x0[ i ], silk_SMULBB( x1[ i ] - x0[ i ], ifact_Q2 ), 2 );
H A Dbwexpander.c36 opus_int16 *ar, /* I/O AR filter to be expanded (without leading 1) */
47 ar[ i ] = (opus_int16)silk_RSHIFT_ROUND( silk_MUL( chirp_Q16, ar[ i ] ), 16 );
50 ar[ d - 1 ] = (opus_int16)silk_RSHIFT_ROUND( silk_MUL( chirp_Q16, ar[ d - 1 ] ), 16 );
H A Dresampler_private_IIR_FIR.c36 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 ) );
[all...]
H A Dresampler_structs.h42 opus_int16 i16[ SILK_RESAMPLER_MAX_FIR_ORDER ];
44 opus_int16 delayBuf[ 48 ];
53 const opus_int16 *Coefs;
H A Dmain.h44 opus_int16 x1[], /* I/O Left input signal, becomes mid signal */
45 opus_int16 x2[], /* I/O Right input signal, becomes side signal */
59 opus_int16 x1[], /* I/O Left input signal, becomes mid signal */
60 opus_int16 x2[], /* I/O Right input signal, becomes side signal */
69 const opus_int16 x[], /* I Basis signal */
70 const opus_int16 y[], /* I Target signal */
195 opus_int16 xi[ MAX_LPC_ORDER ], /* O interpolated vector */
196 const opus_int16 x0[ MAX_LPC_ORDER ], /* I first vector */
197 const opus_int16 x1[ MAX_LPC_ORDER ], /* I second vector */
204 opus_int16 B_Q1
[all...]
/external/libopus/silk/
H A Dresampler_rom.h45 static const opus_int16 silk_resampler_down2_0 = 9872;
46 static const opus_int16 silk_resampler_down2_1 = 39809 - 65536;
49 static const opus_int16 silk_resampler_up2_hq_0[ 3 ] = { 1746, 14986, 39083 - 65536 };
50 static const opus_int16 silk_resampler_up2_hq_1[ 3 ] = { 6854, 25769, 55542 - 65536 };
53 extern const opus_int16 silk_Resampler_3_4_COEFS[ 2 + 3 * RESAMPLER_DOWN_ORDER_FIR0 / 2 ];
54 extern const opus_int16 silk_Resampler_2_3_COEFS[ 2 + 2 * RESAMPLER_DOWN_ORDER_FIR0 / 2 ];
55 extern const opus_int16 silk_Resampler_1_2_COEFS[ 2 + RESAMPLER_DOWN_ORDER_FIR1 / 2 ];
56 extern const opus_int16 silk_Resampler_1_3_COEFS[ 2 + RESAMPLER_DOWN_ORDER_FIR2 / 2 ];
57 extern const opus_int16 silk_Resampler_1_4_COEFS[ 2 + RESAMPLER_DOWN_ORDER_FIR2 / 2 ];
58 extern const opus_int16 silk_Resampler_1_6_COEF
[all...]
H A Dresampler_rom.c40 /* const opus_int16 silk_resampler_up2_hq_notch[ 4 ] = { 9634, -7012, 7209, 30474 }; */
43 silk_DWORD_ALIGN const opus_int16 silk_Resampler_3_4_COEFS[ 2 + 3 * RESAMPLER_DOWN_ORDER_FIR0 / 2 ] = {
50 silk_DWORD_ALIGN const opus_int16 silk_Resampler_2_3_COEFS[ 2 + 2 * RESAMPLER_DOWN_ORDER_FIR0 / 2 ] = {
56 silk_DWORD_ALIGN const opus_int16 silk_Resampler_1_2_COEFS[ 2 + RESAMPLER_DOWN_ORDER_FIR1 / 2 ] = {
61 silk_DWORD_ALIGN const opus_int16 silk_Resampler_1_3_COEFS[ 2 + RESAMPLER_DOWN_ORDER_FIR2 / 2 ] = {
66 silk_DWORD_ALIGN const opus_int16 silk_Resampler_1_4_COEFS[ 2 + RESAMPLER_DOWN_ORDER_FIR2 / 2 ] = {
71 silk_DWORD_ALIGN const opus_int16 silk_Resampler_1_6_COEFS[ 2 + RESAMPLER_DOWN_ORDER_FIR2 / 2 ] = {
76 silk_DWORD_ALIGN const opus_int16 silk_Resampler_2_3_COEFS_LQ[ 2 + 2 * 2 ] = {
83 silk_DWORD_ALIGN const opus_int16 silk_resampler_frac_FIR_12[ 12 ][ RESAMPLER_ORDER_FIR_12 / 2 ] = {
H A Dtable_LSF_cos.c36 const opus_int16 silk_LSFCosTab_FIX_Q12[ LSF_COS_TAB_SZ_FIX + 1 ] = {
H A Dresampler_private.h47 opus_int16 out[], /* O Output signal */
48 const opus_int16 in[], /* I Input signal */
55 opus_int16 out[], /* O Output signal */
56 const opus_int16 in[], /* I Input signal */
63 opus_int16 *out, /* O Output signal [ 2 * len ] */
64 const opus_int16 *in, /* I Input signal [ len ] */
71 opus_int16 *out, /* O Output signal [ 2 * len ] */
72 const opus_int16 *in, /* I Input signal [ len ] */
80 const opus_int16 in[], /* I Input signal */
81 const opus_int16 A_Q1
[all...]
H A Dinterpolate.c36 opus_int16 xi[ MAX_LPC_ORDER ], /* O interpolated vector */
37 const opus_int16 x0[ MAX_LPC_ORDER ], /* I first vector */
38 const opus_int16 x1[ MAX_LPC_ORDER ], /* I second vector */
49 xi[ i ] = (opus_int16)silk_ADD_RSHIFT( x0[ i ], silk_SMULBB( x1[ i ] - x0[ i ], ifact_Q2 ), 2 );
H A Dbwexpander.c36 opus_int16 *ar, /* I/O AR filter to be expanded (without leading 1) */
47 ar[ i ] = (opus_int16)silk_RSHIFT_ROUND( silk_MUL( chirp_Q16, ar[ i ] ), 16 );
50 ar[ d - 1 ] = (opus_int16)silk_RSHIFT_ROUND( silk_MUL( chirp_Q16, ar[ d - 1 ] ), 16 );
H A Dresampler_private_IIR_FIR.c36 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 ) );
[all...]
H A Dresampler_structs.h42 opus_int16 i16[ SILK_RESAMPLER_MAX_FIR_ORDER ];
44 opus_int16 delayBuf[ 48 ];
53 const opus_int16 *Coefs;
H A Dmain.h44 opus_int16 x1[], /* I/O Left input signal, becomes mid signal */
45 opus_int16 x2[], /* I/O Right input signal, becomes side signal */
59 opus_int16 x1[], /* I/O Left input signal, becomes mid signal */
60 opus_int16 x2[], /* I/O Right input signal, becomes side signal */
69 const opus_int16 x[], /* I Basis signal */
70 const opus_int16 y[], /* I Target signal */
195 opus_int16 xi[ MAX_LPC_ORDER ], /* O interpolated vector */
196 const opus_int16 x0[ MAX_LPC_ORDER ], /* I first vector */
197 const opus_int16 x1[ MAX_LPC_ORDER ], /* I second vector */
204 opus_int16 B_Q1
[all...]
/external/chromium_org/third_party/opus/src/celt/tests/
H A Dtest_unit_types.c37 opus_int16 i = 1;
41 fprintf(stderr, "opus_int16 isn't 16 bits\n");
44 if (sizeof(opus_int16)*2 != sizeof(opus_int32))
/external/libopus/celt/tests/
H A Dtest_unit_types.c37 opus_int16 i = 1;
41 fprintf(stderr, "opus_int16 isn't 16 bits\n");
44 if (sizeof(opus_int16)*2 != sizeof(opus_int32))
/external/chromium_org/third_party/opus/src/include/
H A Dopus_types.h40 typedef int16_t opus_int16; typedef
50 typedef _G_int16 opus_int16; typedef
53 typedef short opus_int16; typedef
60 typedef short opus_int16; typedef
66 typedef __int16 opus_int16; typedef
73 typedef SInt16 opus_int16; typedef
81 typedef int16_t opus_int16; typedef
90 typedef int16 opus_int16; typedef
98 typedef short opus_int16; typedef
106 typedef short opus_int16; typedef
116 typedef short opus_int16; typedef
122 typedef signed short opus_int16; typedef
129 typedef short opus_int16; typedef
136 typedef short opus_int16; typedef
144 typedef short opus_int16; typedef
[all...]
/external/libopus/include/
H A Dopus_types.h40 typedef int16_t opus_int16; typedef
50 typedef _G_int16 opus_int16; typedef
53 typedef short opus_int16; typedef
60 typedef short opus_int16; typedef
66 typedef __int16 opus_int16; typedef
73 typedef SInt16 opus_int16; typedef
81 typedef int16_t opus_int16; typedef
90 typedef int16 opus_int16; typedef
98 typedef short opus_int16; typedef
106 typedef short opus_int16; typedef
116 typedef short opus_int16; typedef
122 typedef signed short opus_int16; typedef
129 typedef short opus_int16; typedef
136 typedef short opus_int16; typedef
144 typedef short opus_int16; typedef
[all...]
/external/chromium_org/third_party/opus/src/celt/
H A Dstatic_modes_fixed.h39 static const opus_int16 logN400[21] = {
45 static const opus_int16 cache_index50[105] = {
343 static const opus_int16 fft_bitrev480[480] = {
381 static const opus_int16 fft_bitrev240[240] = {
403 static const opus_int16 fft_bitrev120[120] = {
417 static const opus_int16 fft_bitrev60[60] = {
/external/libopus/celt/
H A Dstatic_modes_fixed.h39 static const opus_int16 logN400[21] = {
45 static const opus_int16 cache_index50[105] = {
343 static const opus_int16 fft_bitrev480[480] = {
381 static const opus_int16 fft_bitrev240[240] = {
403 static const opus_int16 fft_bitrev120[120] = {
417 static const opus_int16 fft_bitrev60[60] = {
/external/chromium_org/third_party/opus/src/silk/fixed/
H A Dmain_FIX.h97 const opus_int16 x[] /* I Speech signal */
107 const opus_int16 *pitch_res, /* I LPC residual from pitch analysis */
108 const opus_int16 *x, /* I Input signal [ frame_length + la_shape ] */
116 const opus_int16 *input, /* I Input data to correlate */
136 opus_int16 res[], /* O residual */
137 const opus_int16 x[], /* I Speech signal */
145 const opus_int16 res_pitch[], /* I Residual from pitch analysis */
146 const opus_int16 x[], /* I Speech signal */
153 opus_int16 NLSF_Q15[], /* O NLSFs */
154 const opus_int16
[all...]

Completed in 217 milliseconds

1234567891011