HomeSort by relevance Sort by last modified time
    Searched defs:channels (Results 1 - 25 of 247) sorted by null

1 2 3 4 5 6 7 8 910

  /external/webrtc/webrtc/modules/audio_coding/neteq/
background_noise_unittest.cc 20 size_t channels = 1; local
21 BackgroundNoise bgn(channels);
merge_unittest.cc 28 size_t channels = 1; local
29 BackgroundNoise bgn(channels);
33 Expand expand(&bgn, &sync_buffer, &random_vector, &statistics, fs, channels);
34 Merge merge(fs, channels, &expand, &sync_buffer);
normal_unittest.cc 36 size_t channels = 1; local
37 BackgroundNoise bgn(channels);
41 Expand expand(&bgn, &sync_buffer, &random_vector, &statistics, fs, channels);
50 size_t channels = 1; local
51 BackgroundNoise bgn(channels);
56 channels);
60 rtc::scoped_ptr<int16_t[]> mute_factor_array(new int16_t[channels]);
61 for (size_t i = 0; i < channels; ++i) {
64 AudioMultiVector output(channels);
96 size_t channels = 2 local
    [all...]
  /external/toybox/toys/other/
mix.c 14 List OSS sound channels (module snd-mixer-oss), or set volume(s).
33 const char *channels[SOUND_MIXER_NRDEVICES] = SOUND_DEVICE_NAMES; local
43 if (!strcmp(channels[channel], TT.c)) break;
45 else printf("%s\n", channels[channel]);
56 TT.d, channels[channel], level>>8, level & 0xFF);
57 else xprintf("%s:%s = %d\n", TT.d, channels[channel], level);
  /external/webrtc/webrtc/test/fuzzers/
audio_decoder_opus_fuzzer.cc 16 const size_t channels = (size % 2) + 1; // 1 or 2 channels. local
17 AudioDecoderOpus dec(channels);
  /external/adhd/cras/src/server/
cras_audio_area.h 16 * ch_set - Bit set of channels this channel area could map to.
27 * Descriptor of the memory area that provides various access to audio channels.
30 * num_channels - The number of channels in the audio area.
31 * channels - array of channel areas.
36 struct cras_channel_area channels[]; member in struct:cras_audio_area
55 * num_channels - The number of channels in the audio area.
88 * fmt - The format to use to configure the channels.
  /external/webrtc/webrtc/modules/audio_coding/codecs/opus/
opus_inst.h 20 size_t channels; member in struct:WebRtcOpusEncInst
33 size_t channels; member in struct:WebRtcOpusDecInst
  /bootable/recovery/minui/include/private/
resources.h 43 png_byte channels() const { function in class:PngHandler
  /cts/tests/tests/telephony/current/src/android/telephony/cts/
RadioAccessSpecifierTest.java 32 int[] channels = {5, 6, 7}; local
33 RadioAccessSpecifier radioAccessSpecifier = new RadioAccessSpecifier(ran, bands, channels);
37 assertThat(radioAccessSpecifier.getChannels()).isEqualTo(channels);
40 RadioAccessSpecifier toCompare1 = new RadioAccessSpecifier(ran, bands, channels);
43 RadioAccessSpecifier toCompare3 = new RadioAccessSpecifier(ran+1, bands, channels);
  /external/ImageMagick/coders/
psd-private.h 38 channels, member in struct:_PSDInfo
  /external/flac/libFLAC/include/protected/
stream_decoder.h 44 unsigned channels; member in struct:FLAC__StreamDecoderProtected
  /external/libpng/contrib/gregbook/
readppm.c 68 int bit_depth, color_type, channels; variable
97 channels = 3;
100 channels = 4;
103 channels = 1;
152 /* GRR WARNING: grayscale needs to be expanded and channels reset! */
154 *pRowbytes = rowbytes = channels*width;
155 *pChannels = channels;
  /external/libpng/contrib/tools/
cvtcolor.c 53 int channels = 0; local
92 ++channels;
95 ++channels;
98 ++channels;
101 ++channels;
108 int components = channels;
114 if (components < channels)
123 if ((channels & 1) == 0)
125 double alpha = c[channels-1];
128 for (i=0; i<channels-1; ++i) c[i] /= alpha
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
AudioQuality.java 24 int channels; field in class:AudioQuality
  /external/tensorflow/tensorflow/core/kernels/
encode_jpeg_op.cc 94 // image channels are consistent.
95 int channels; variable
98 channels = dim_size2;
99 if (channels == 1) {
101 } else if (channels == 3) {
106 errors::InvalidArgument("image must have 1 or 3 channels, got ",
111 channels = 1;
113 channels = 3;
115 OP_REQUIRES(context, channels == dim_size2,
117 channels, " channels, got "
    [all...]
encode_png_op.cc 63 const int32 channels = static_cast<int32>(image.dim_size(2)); variable
65 // In some cases, we pass width*channels*2 to png.
68 OP_REQUIRES(context, FastBoundsCheck(width * channels, max_row_width),
71 OP_REQUIRES(context, channels >= 1 && channels <= 4,
73 "image must have 1, 2, 3, or 4 channels, got ", channels));
82 height, width * channels, channels,
90 width * channels * 2, channels, desired_channel_bits_
    [all...]
colorspace_op.cc 52 auto channels = input.dim_size(input.dims() - 1); variable
53 OP_REQUIRES(context, channels == 3,
55 "input must have 3 channels but input only has ", channels,
56 " channels."));
91 auto channels = input.dim_size(input.dims() - 1); variable
92 OP_REQUIRES(context, channels == 3,
94 "input must have 3 channels but input only has ", channels,
95 " channels."))
    [all...]
  /external/tensorflow/tensorflow/core/lib/png/
png_io.h 56 int channels; member in struct:tensorflow::png::DecodeContext
  /external/tensorflow/tensorflow/lite/examples/label_image/
bitmap_helpers.cc 32 int height, int channels, bool top_down) {
33 std::vector<uint8_t> output(height * width * channels);
40 src_pos = ((height - 1 - i) * row_size) + j * channels;
42 src_pos = i * row_size + j * channels;
45 dst_pos = (i * width + j) * channels;
47 switch (channels) {
65 LOG(FATAL) << "Unexpected number of channels: " << channels;
74 int* height, int* channels, Settings* s) {
99 *channels = bpp / 8
103 << ", " << *channels << "\\n"; local
    [all...]
label_image_test.cc 30 int height, width, channels; local
33 read_bmp(lena_file, &width, &height, &channels, &s);
36 ASSERT_EQ(channels, 3);
  /external/u-boot/test/dm/
adc.c 107 struct adc_channel channels[SANDBOX_ADC_CHANNELS]; local
118 ut_assertok(adc_channels_data(dev, channel_mask, channels));
122 ut_asserteq(tdata->data, channels[i].data);
146 struct adc_channel channels[SANDBOX_ADC_CHANNELS]; local
154 ut_assertok(adc_channels_single_shot("adc", channel_mask, channels));
158 ut_asserteq(tdata->data, channels[i].data);
  /external/webrtc/webrtc/audio/
audio_sink.h 33 size_t channels,
38 channels(channels),
44 size_t channels; // Number of channels in the audio data. member in struct:webrtc::AudioSinkInterface::Data
  /external/webrtc/webrtc/modules/audio_coding/acm2/
acm_receiver.h 47 size_t channels; member in struct:webrtc::acm2::AcmReceiver::Decoder
119 size_t channels,
  /frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/
LVCS_Process.c 81 LVM_INT32 channels = pInstance->Params.NrChannels; local
88 *So to treat the pInData as stereo we are setting channels to 2
90 if (channels == 1)
92 channels = 2;
104 * The pInput buffer holds the first 2 (Left, Right) channels information.
116 channels);
285 /*Extract number of Channels info*/
286 LVM_INT32 channels = pInstance->Params.NrChannels; local
288 if (channels == 1)
290 channels = 2
    [all...]
  /external/libopus/tests/
opus_decode_fuzzer.c 45 int channels; member in struct:__anon29291
53 info->channels = opus_packet_get_nb_channels(toc);
77 dec = opus_decoder_create(toc.fs, toc.channels, &err);
82 pcm = (opus_int16*) malloc(sizeof(*pcm) * MAX_FRAME_SAMP * toc.channels);

Completed in 945 milliseconds

1 2 3 4 5 6 7 8 910