Lines Matching refs:opus_int32
97 opus_int32 simple_matrix_size; in test_simple_matrix()
199 const opus_int32 Fs = 48000; in test_creation_arguments()
212 opus_int32 matrix_size; in test_creation_arguments()
249 void generate_music(short *buf, opus_int32 len, opus_int32 channels) in generate_music()
251 opus_int32 i,j,k; in generate_music()
252 opus_int32 *a,*b,*c,*d; in generate_music()
253 a = (opus_int32 *)malloc(sizeof(opus_int32) * channels); in generate_music()
254 b = (opus_int32 *)malloc(sizeof(opus_int32) * channels); in generate_music()
255 c = (opus_int32 *)malloc(sizeof(opus_int32) * channels); in generate_music()
256 d = (opus_int32 *)malloc(sizeof(opus_int32) * channels); in generate_music()
257 memset(a, 0, sizeof(opus_int32) * channels); in generate_music()
258 memset(b, 0, sizeof(opus_int32) * channels); in generate_music()
259 memset(c, 0, sizeof(opus_int32) * channels); in generate_music()
260 memset(d, 0, sizeof(opus_int32) * channels); in generate_music()
268 opus_int32 v; in generate_music()
285 void test_encode_decode(opus_int32 bitrate, opus_int32 channels, in test_encode_decode()
288 const opus_int32 Fs = 48000; in test_encode_decode()
301 opus_int32 matrix_size = 0; in test_encode_decode()