HomeSort by relevance Sort by last modified time
    Searched refs:Channels (Results 26 - 50 of 77) sorted by null

12 3 4

  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/
audio_decoder_isac_t.h 37 size_t Channels() const override;
audio_decoder_isac_t_impl.h 98 size_t AudioDecoderIsacT<T>::Channels() const {
  /external/webrtc/webrtc/modules/audio_coding/codecs/opus/
audio_decoder_opus.h 29 size_t Channels() const override;
audio_decoder_opus.cc 90 size_t AudioDecoderOpus::Channels() const {
  /external/webrtc/webrtc/modules/audio_coding/neteq/
audio_decoder_impl.h 46 size_t Channels() const override;
audio_multi_vector_unittest.cc 25 // number of channels in the AudioMultiBuffer. Note that it is not possible
28 // this test focuses on testing different number of channels, and keeping the
75 EXPECT_EQ(num_channels_, vec1.Channels());
81 EXPECT_EQ(num_channels_, vec2.Channels());
105 ASSERT_EQ(num_channels_, vec.Channels());
107 ASSERT_EQ(num_channels_, vec_copy.Channels());
109 for (size_t channel = 0; channel < vec.Channels(); ++channel) {
181 ASSERT_EQ(num_channels_, vec.Channels());
273 for (size_t channel = 0; channel < vec.Channels(); ++channel) {
304 // channels
    [all...]
audio_multi_vector.h 26 // Creates an empty AudioMultiVector with |N| audio channels. |N| must be
30 // Creates an AudioMultiVector with |N| audio channels, each channel having
45 // number of channels.
50 // an even multiple of this object's number of channels.
52 // number of channels.
75 // returned, i.e., |length| * number of channels. If the AudioMultiVector
108 // Returns the number of channels.
109 virtual size_t Channels() const;
120 // Copies the data between two channels in the AudioMultiVector. The method
neteq_impl.cc 532 // Trigger an update of sampling rate and the number of channels.
695 decoder->Channels() != algorithm_buffer_->Channels()) {
696 SetSampleRateAndChannels(decoder_info->fs_hz, decoder->Channels());
861 size_t num_output_samples = output_size_samples_ * sync_buffer_->Channels();
864 output_size_samples_ << " * " << sync_buffer_->Channels();
866 num_output_samples_per_channel = max_length / sync_buffer_->Channels();
871 *num_channels = sync_buffer_->Channels();
897 return_value = DtmfOverdub(dtmf_event, sync_buffer_->Channels(), output);
1958 LOG(LS_VERBOSE) << "SetSampleRateAndChannels " << fs_hz << " " << channels; local
    [all...]
dtmf_tone_generator.cc 184 // Copy first channel to all other channels.
185 for (size_t channel = 1; channel < output->Channels(); ++channel) {
neteq_network_stats_unittest.cc 49 size_t Channels() const override { return num_channels_; }
63 memset(decoded, 0, sizeof(int16_t) * kPacketDuration * Channels());
64 return kPacketDuration * Channels();
85 static const int kMaxOutputSize = 960; // 10 ms * 48 kHz * 2 channels.
comfort_noise.cc 60 if (output->Channels() != 1) {
sync_buffer.cc 48 for (size_t channel = 0; channel < Channels(); ++channel) {
  /external/brotli/java/org/brotli/wrapper/dec/
BrotliInputStream.java 11 import java.nio.channels.Channels;
30 this.decoder = new Decoder(Channels.newChannel(source), bufferSize);
  /external/webrtc/webrtc/modules/audio_coding/codecs/
audio_decoder.cc 26 duration * Channels() * sizeof(int16_t) > max_decoded_bytes) {
39 duration * Channels() * sizeof(int16_t) > max_decoded_bytes) {
audio_decoder.h 40 // channels. If the decoder produced comfort noise, |speech_type|
101 virtual size_t Channels() const = 0;
  /external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/bzip2/
PythonTruncatedBzip2Test.java 29 import java.nio.channels.Channels;
30 import java.nio.channels.ReadableByteChannel;
109 return Channels.newChannel(bZin);
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
neteq_external_decoder_test.cc 25 channels_(decoder_->Channels()) {
  /external/brotli/java/org/brotli/wrapper/enc/
BrotliEncoderChannelTest.java 15 import java.nio.channels.Channels;
16 import java.nio.channels.WritableByteChannel;
87 WritableByteChannel encoder = new BrotliEncoderChannel(Channels.newChannel(dst));
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
SampleEntry.java 30 import java.nio.channels.Channels;
31 import java.nio.channels.ReadableByteChannel;
32 import java.nio.channels.WritableByteChannel;
140 WritableByteChannel wbc = Channels.newChannel(baos);
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
HiiImageDecoder.h 86 // Channels Number of channels in the PNG image
91 UINT16 Channels;
  /external/webrtc/webrtc/modules/audio_coding/neteq/mock/
mock_external_decoder_pcm16b.h 42 size_t Channels() const override { return 1; }
  /frameworks/av/media/libstagefright/codecs/common/include/
voAudio.h 85 VO_CHANNEL_ALL = 0xffff,/*!<[default] include all channels */
95 VO_S32 Channels; /*!< Channel count */
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
AppendTrack.java 30 import java.nio.channels.Channels;
51 track.getSampleDescriptionBox().getBox(Channels.newChannel(curBaos));
52 stsd.getBox(Channels.newChannel(refBaos));
139 cur1.getBox(Channels.newChannel(baos1));
140 cur2.getBox(Channels.newChannel(baos2));
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/simple/
SimpleTvInputService.java 34 * Simple TV input service which provides two sample channels.
89 String[] projection = {TvContract.Channels.COLUMN_SERVICE_ID};
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/examples/
Archiver.java 26 import java.nio.channels.Channels;
27 import java.nio.channels.FileChannel;
28 import java.nio.channels.SeekableByteChannel;
114 create(format, Channels.newOutputStream(target), directory);

Completed in 1526 milliseconds

12 3 4