Home
last modified time | relevance | path

Searched refs:Channels (Results 1 – 25 of 76) sorted by relevance

1234

/external/webrtc/webrtc/modules/audio_coding/neteq/
Dnormal.cc40 if (length % output->Channels() != 0) { in Process()
63 AudioMultiVector expanded(output->Channels()); in Process()
67 for (size_t channel_ix = 0; channel_ix < output->Channels(); ++channel_ix) { in Process()
74 size_t length_per_channel = length / output->Channels(); in Process()
117 assert(channel_ix < output->Channels()); in Process()
137 assert(channel_ix < output->Channels()); in Process()
146 assert(output->Channels() == 1); // Not adapted for multi-channel yet. in Process()
182 size_t length_per_channel = length / output->Channels(); in Process()
184 for (size_t channel_ix = 0; channel_ix < output->Channels(); in Process()
187 assert(channel_ix < output->Channels()); in Process()
Daudio_multi_vector_unittest.cc75 EXPECT_EQ(num_channels_, vec1.Channels()); in TEST_P()
81 EXPECT_EQ(num_channels_, vec2.Channels()); in TEST_P()
105 ASSERT_EQ(num_channels_, vec.Channels()); in TEST_P()
107 ASSERT_EQ(num_channels_, vec_copy.Channels()); in TEST_P()
109 for (size_t channel = 0; channel < vec.Channels(); ++channel) { in TEST_P()
181 ASSERT_EQ(num_channels_, vec.Channels()); in TEST_P()
273 for (size_t channel = 0; channel < vec.Channels(); ++channel) { in TEST_P()
Dneteq_impl.cc695 decoder->Channels() != algorithm_buffer_->Channels()) { in InsertPacketInternal()
696 SetSampleRateAndChannels(decoder_info->fs_hz, decoder->Channels()); in InsertPacketInternal()
861 size_t num_output_samples = output_size_samples_ * sync_buffer_->Channels(); in GetAudioInternal()
864 output_size_samples_ << " * " << sync_buffer_->Channels(); in GetAudioInternal()
866 num_output_samples_per_channel = max_length / sync_buffer_->Channels(); in GetAudioInternal()
871 *num_channels = sync_buffer_->Channels(); in GetAudioInternal()
897 return_value = DtmfOverdub(dtmf_event, sync_buffer_->Channels(), output); in GetAudioInternal()
1234 decoder->Channels() != algorithm_buffer_->Channels()) { in Decode()
1236 SetSampleRateAndChannels(decoder_info->fs_hz, decoder->Channels()); in Decode()
1307 (decoder && decoder->Channels() == sync_buffer_->Channels())); in Decode()
[all …]
Dneteq_network_stats_unittest.cc49 size_t Channels() const override { return num_channels_; } in Channels() function in webrtc::test::MockAudioDecoder
63 memset(decoded, 0, sizeof(int16_t) * kPacketDuration * Channels()); in DecodeInternal()
64 return kPacketDuration * Channels(); in DecodeInternal()
/external/webrtc/webrtc/modules/audio_coding/codecs/g711/
Daudio_decoder_pcm.cc19 size_t AudioDecoderPcmU::Channels() const { in Channels() function in webrtc::AudioDecoderPcmU
38 return static_cast<int>(encoded_len / Channels()); in PacketDuration()
43 size_t AudioDecoderPcmA::Channels() const { in Channels() function in webrtc::AudioDecoderPcmA
62 return static_cast<int>(encoded_len / Channels()); in PacketDuration()
Daudio_decoder_pcm.h26 size_t Channels() const override;
47 size_t Channels() const override;
/external/opencv3/modules/cudaimgproc/test/
Dtest_match_template.cpp60 PARAM_TEST_CASE(MatchTemplate8U, cv::cuda::DeviceInfo, cv::Size, TemplateSize, Channels, TemplateMe… in PARAM_TEST_CASE() argument
111 testing::Values(Channels(1), Channels(3), Channels(4)),
117 PARAM_TEST_CASE(MatchTemplate32F, cv::cuda::DeviceInfo, cv::Size, TemplateSize, Channels, TemplateM… in PARAM_TEST_CASE() argument
170 testing::Values(Channels(1), Channels(3), Channels(4)),
/external/opencv3/modules/ts/include/opencv2/ts/
Dcuda_test.hpp311 IMPLEMENT_PARAM_CLASS(Channels, int)
313 #define ALL_CHANNELS testing::Values(Channels(1), Channels(2), Channels(3), Channels(4))
314 #define IMAGE_CHANNELS testing::Values(Channels(1), Channels(3), Channels(4))
/external/opencv3/modules/core/test/ocl/
Dtest_channels.cpp148 PARAM_TEST_CASE(Split, MatType, Channels, bool) in PARAM_TEST_CASE() argument
369 PARAM_TEST_CASE(InsertChannel, MatDepth, Channels, bool) in PARAM_TEST_CASE() argument
415 PARAM_TEST_CASE(ExtractChannel, MatDepth, Channels, bool) in PARAM_TEST_CASE() argument
461 OCL_INSTANTIATE_TEST_CASE_P(Channels, Merge, Combine(OCL_ALL_DEPTHS, Values(1, 2, 3, 4), Bool()));
462 OCL_INSTANTIATE_TEST_CASE_P(Channels, Split, Combine(OCL_ALL_DEPTHS, OCL_ALL_CHANNELS, Bool()));
463 OCL_INSTANTIATE_TEST_CASE_P(Channels, MixChannels, Combine(OCL_ALL_DEPTHS, Bool()));
464 OCL_INSTANTIATE_TEST_CASE_P(Channels, InsertChannel, Combine(OCL_ALL_DEPTHS, OCL_ALL_CHANNELS, Bool…
465 OCL_INSTANTIATE_TEST_CASE_P(Channels, ExtractChannel, Combine(OCL_ALL_DEPTHS, OCL_ALL_CHANNELS, Boo…
Dtest_matrix_operation.cpp57 PARAM_TEST_CASE(ConvertTo, MatDepth, MatDepth, Channels, bool) in PARAM_TEST_CASE() argument
106 PARAM_TEST_CASE(CopyTo, MatDepth, Channels, bool, bool) in PARAM_TEST_CASE() argument
/external/opencv3/modules/core/include/opencv2/core/
Dwimage.hpp194 int Channels() const {return image_->nChannels; } in Channels() function in cv::WImage
198 int PixelSize() const {return Channels() * ChannelSize(); } in PixelSize()
216 c*Channels(); in operator ()()
221 c*Channels(); in operator ()()
263 assert(!img || img->nChannels == Channels()); in WImageC()
278 int Channels() const {return C; } in Channels() function in cv::WImageC
323 Allocate(src.Width(), src.Height(), src.Channels()); in CloneFrom()
517 WImage<T>::Height() != height || WImage<T>::Channels() != nchannels) { in Allocate()
/external/webrtc/webrtc/modules/audio_coding/codecs/pcm16b/
Daudio_decoder_pcm16b.cc25 size_t AudioDecoderPcm16B::Channels() const { in Channels() function in webrtc::AudioDecoderPcm16B
45 return static_cast<int>(encoded_len / (2 * Channels())); in PacketDuration()
Daudio_decoder_pcm16b.h24 size_t Channels() const override;
/external/webrtc/webrtc/modules/audio_coding/codecs/g722/
Daudio_decoder_g722.cc53 return static_cast<int>(2 * encoded_len / Channels()); in PacketDuration()
56 size_t AudioDecoderG722::Channels() const { in Channels() function in webrtc::AudioDecoderG722
103 size_t AudioDecoderG722Stereo::Channels() const { in Channels() function in webrtc::AudioDecoderG722Stereo
Daudio_decoder_g722.h27 size_t Channels() const override;
53 size_t Channels() const override;
/external/opencv/cxcore/include/
Dcvwimage.h198 int Channels() const {return image_->nChannels; } in Channels() function
202 int PixelSize() const {return Channels() * ChannelSize(); } in PixelSize()
220 c*Channels(); in operator()
225 c*Channels(); in operator()
267 assert(!img || img->nChannels == Channels()); in WImageC()
282 int Channels() const {return C; } in Channels() function
534 WImage<T>::Height() != height || WImage<T>::Channels() != nchannels) { in Allocate()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
DAppendTrack.java30 import java.nio.channels.Channels;
51 track.getSampleDescriptionBox().getBox(Channels.newChannel(curBaos)); in AppendTrack()
52 stsd.getBox(Channels.newChannel(refBaos)); in AppendTrack()
139 cur1.getBox(Channels.newChannel(baos1)); in mergeAudioSampleEntries()
140 cur2.getBox(Channels.newChannel(baos2)); in mergeAudioSampleEntries()
/external/webrtc/webrtc/modules/audio_coding/codecs/
Daudio_decoder.cc26 duration * Channels() * sizeof(int16_t) > max_decoded_bytes) { in Decode()
39 duration * Channels() * sizeof(int16_t) > max_decoded_bytes) { in DecodeRedundant()
/external/chromium-trace/catapult/telemetry/telemetry/util/
Dimage_util.py28 def Channels(image): function
30 return impl.Channels(image)
/external/jetty/src/java/org/eclipse/jetty/io/nio/
DDirectNIOBuffer.java27 import java.nio.channels.Channels;
242 _in=Channels.newChannel(in); in readFrom()
307 _out=Channels.newChannel(out); in writeTo()
/external/opencv3/modules/imgproc/test/ocl/
Dtest_imgproc.cpp109 Channels, // channels in PARAM_TEST_CASE() argument
489 testing::Values(Channels(1), Channels(3), (Channels)4),
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
DSampleEntry.java30 import java.nio.channels.Channels;
140 WritableByteChannel wbc = Channels.newChannel(baos); in _writeChildBoxes()
/external/opencv3/modules/core/test/
Dtest_ippasync.cpp14 PARAM_TEST_CASE(IPPAsync, MatDepth, Channels, hppAccelType) in PARAM_TEST_CASE() argument
86 PARAM_TEST_CASE(IPPAsyncShared, Channels, hppAccelType) in PARAM_TEST_CASE() argument
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
Daudio_decoder_ilbc.h27 size_t Channels() const override;
/external/webrtc/webrtc/modules/audio_coding/neteq/mock/
Dmock_audio_decoder.h34 MOCK_CONST_METHOD0(Channels, size_t());

1234