Home
last modified time | relevance | path

Searched refs:CHANNELS (Results 1 – 11 of 11) sorted by relevance

/external/libopus/doc/
Dtrivial_example.c41 #define CHANNELS 2 macro
54 opus_int16 in[FRAME_SIZE*CHANNELS]; in main()
55 opus_int16 out[MAX_FRAME_SIZE*CHANNELS]; in main()
71 encoder = opus_encoder_create(SAMPLE_RATE, CHANNELS, APPLICATION, &err); in main()
97 decoder = opus_decoder_create(SAMPLE_RATE, CHANNELS, &err); in main()
114 unsigned char pcm_bytes[MAX_FRAME_SIZE*CHANNELS*2]; in main()
118 fread(pcm_bytes, sizeof(short)*CHANNELS, FRAME_SIZE, fin); in main()
122 for (i=0;i<CHANNELS*FRAME_SIZE;i++) in main()
146 for(i=0;i<CHANNELS*frame_size;i++) in main()
152 fwrite(pcm_bytes, sizeof(short), frame_size*CHANNELS, fout); in main()
/external/tensorflow/tensorflow/contrib/layers/python/layers/
Drev_block_lib_test.py39 CHANNELS = 8 variable in RevBlockTest
46 return core_layers.dense(x, self.CHANNELS // 2, use_bias=True)
49 return core_layers.dense(x, self.CHANNELS // 2, use_bias=True)
52 [self.BATCH_SIZE, self.CHANNELS], dtype=dtypes.float32)
69 return core_layers.dense(x, self.CHANNELS // 2, use_bias=True)
72 return core_layers.dense(x, self.CHANNELS // 2, use_bias=True)
75 [self.BATCH_SIZE, self.CHANNELS], dtype=dtypes.float32)
100 return core_layers.dense(x, self.CHANNELS // 2, use_bias=True)
105 return core_layers.dense(x, self.CHANNELS // 2, use_bias=True)
115 [self.BATCH_SIZE, self.CHANNELS], dtype=dtypes.float32)
[all …]
/external/libxaac/decoder/
Dixheaacd_aacdec.h37 ia_aac_dec_channel_info_struct *pstr_aac_dec_ch_info[CHANNELS];
39 ia_aac_dec_channel_info *ptr_aac_dec_static_channel_info[CHANNELS];
41 ia_aac_dec_overlap_info *pstr_aac_dec_overlap_info[CHANNELS];
56 ia_aac_dec_overlap_info str_aac_dec_overlap_info[CHANNELS];
61 ia_aac_dec_channel_info *ptr_aac_dec_static_channel_info[CHANNELS];
62 WORD16 *ltp_buf[CHANNELS];
Dixheaacd_defines.h41 #define CHANNELS 2 macro
Dixheaacd_channel.h51 ia_aac_dec_channel_info_struct *ptr_aac_dec_channel_info[CHANNELS]);
Dixheaacd_aacdecoder.c127 ia_aac_sfb_code_book_struct *ptr_aac_sfb_code_book_data[CHANNELS]; in ixheaacd_aacdec_decodeframe()
Dixheaacd_channel.c665 ia_aac_dec_channel_info_struct *ptr_aac_dec_channel_info[CHANNELS]) { in ixheaacd_map_ms_mask_pns() argument
/external/tensorflow/tensorflow/core/kernels/
Dresize_bicubic_op_test.cc268 #define BM_ResizeBicubicDev(BATCH, SIZE, CHANNELS) \ argument
269 static void BM_ResizeBicubic##_##BATCH##_##SIZE##_##CHANNELS(int iters) { \
271 CHANNELS); \
272 test::Benchmark("cpu", ResizeBicubic(BATCH, SIZE, CHANNELS)).Run(iters); \
274 BENCHMARK(BM_ResizeBicubic##_##BATCH##_##SIZE##_##CHANNELS);
289 #define BM_ResizeBicubicExpand(BATCH, SIZE, CHANNELS) \ argument
290 static void BM_ResizeBicubicExpand##_##BATCH##_##SIZE##_##CHANNELS( \
293 CHANNELS * 8 * 8); \
294 test::Benchmark("cpu", ResizeBicubic(BATCH, SIZE, CHANNELS, 8, 8)) \
297 BENCHMARK(BM_ResizeBicubicExpand##_##BATCH##_##SIZE##_##CHANNELS);
/external/libopus/tests/
Dtest_opus_padding.c39 #define CHANNELS 2 macro
49 opus_int16 *out = malloc(FRAMESIZE*CHANNELS*sizeof(*out)); in test_overflow()
61 decoder = opus_decoder_create(48000, CHANNELS, &error); in test_overflow()
/external/webrtc/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/
DWebRtcAudioManager.java62 private static final int CHANNELS = 1; field in WebRtcAudioManager
139 channels = CHANNELS; in storeAudioParameters()
269 assertTrue(numChannels == CHANNELS); in getMinInputFrameSize()
/external/walt/android/WALT/app/src/main/jni/
Dplayer.c58 #define CHANNELS 1 // 1 for mono, 2 for stereo macro
406 format_pcm.numChannels = CHANNELS; in Java_org_chromium_latency_walt_AudioTest_createAudioRecorder()