Searched defs:conv_mtx (Results 1 - 3 of 3) sorted by relevance
/external/adhd/cras/src/tests/ |
H A D | audio_format_unittest.cc | 29 if (conv_mtx) 30 cras_channel_conv_matrix_destroy(conv_mtx, 6); 35 float **conv_mtx; member in class:__anon750::ChannelConvMtxTestSuite 53 conv_mtx = cras_channel_conv_matrix_create(in_fmt, out_fmt); 54 ASSERT_NE(conv_mtx, (void *)NULL); 72 conv_mtx = cras_channel_conv_matrix_create(in_fmt, out_fmt); 73 ASSERT_EQ(conv_mtx, (void *)NULL); 93 conv_mtx = cras_channel_conv_matrix_create(in_fmt, out_fmt); 94 ASSERT_NE(conv_mtx, (void *)NULL);
|
H A D | fmt_conv_unittest.cc | 1267 float** conv_mtx; local 1268 conv_mtx = (float **)calloc(CRAS_CH_MAX, sizeof(*conv_mtx)); 1270 conv_mtx[i] = (float *)calloc(CRAS_CH_MAX, sizeof(*conv_mtx[i])); 1271 return conv_mtx;
|
/external/adhd/cras/src/server/ |
H A D | cras_alsa_helpers.c | 157 float **conv_mtx; local 182 conv_mtx = cras_channel_conv_matrix_create(fmt, conv_fmt); 183 if (conv_mtx) { 184 cras_channel_conv_matrix_destroy(conv_mtx,
|
Completed in 232 milliseconds