Searched refs:channels (Results 26 - 50 of 710) sorted by relevance

1234567891011>>

/external/chromium_org/tools/
H A Domahaproxy.py31 channels = set()
40 channels.add(version['channel'])
45 channels = sorted(channels)
59 choices=channels,
62 '[default: %%default]' % ', '.join(channels))
/external/libpng/contrib/gregbook/
H A Dreadppm.c68 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/chromium_org/media/audio/
H A Daudio_parameters.h64 int channels, int sample_rate, int bits_per_sample,
68 int channels, int sample_rate, int bits_per_sample,
96 int channels() const { return channels_; } function in class:media::AudioParameters
103 ChannelLayout channel_layout_; // Order of surround sound channels.
108 int channels_; // Number of channels. Value set based on
117 if (a.channels() != b.channels())
118 return a.channels() < b.channels();
/external/wpa_supplicant_8/hostapd/src/p2p/
H A Dp2p_utils.c61 /* channels 1..13 */
70 case 83: /* channels 1..9; 40 MHz */
71 case 84: /* channels 5..13; 40 MHz */
75 case 115: /* channels 36,40,44,48; indoor only */
76 case 118: /* channels 52,56,60,64; dfs */
80 case 124: /* channels 149,153,157,161 */
81 case 125: /* channels 149,153,157,161,165,169 */
85 case 116: /* channels 36,44; 40 MHz; indoor only */
86 case 117: /* channels 40,48; 40 MHz; indoor only */
87 case 119: /* channels 5
330 p2p_channels_includes(const struct p2p_channels *channels, u8 reg_class, u8 channel) argument
347 p2p_channels_includes_freq(const struct p2p_channels *channels, unsigned int freq) argument
396 p2p_get_pref_freq(struct p2p_data *p2p, const struct p2p_channels *channels) argument
450 p2p_channel_pick_random(const u8 *channels, unsigned int num_channels) argument
[all...]
/external/wpa_supplicant_8/src/p2p/
H A Dp2p_utils.c61 /* channels 1..13 */
70 case 83: /* channels 1..9; 40 MHz */
71 case 84: /* channels 5..13; 40 MHz */
75 case 115: /* channels 36,40,44,48; indoor only */
76 case 118: /* channels 52,56,60,64; dfs */
80 case 124: /* channels 149,153,157,161 */
81 case 125: /* channels 149,153,157,161,165,169 */
85 case 116: /* channels 36,44; 40 MHz; indoor only */
86 case 117: /* channels 40,48; 40 MHz; indoor only */
87 case 119: /* channels 5
330 p2p_channels_includes(const struct p2p_channels *channels, u8 reg_class, u8 channel) argument
347 p2p_channels_includes_freq(const struct p2p_channels *channels, unsigned int freq) argument
396 p2p_get_pref_freq(struct p2p_data *p2p, const struct p2p_channels *channels) argument
450 p2p_channel_pick_random(const u8 *channels, unsigned int num_channels) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/p2p/
H A Dp2p_utils.c61 /* channels 1..13 */
70 case 83: /* channels 1..9; 40 MHz */
71 case 84: /* channels 5..13; 40 MHz */
75 case 115: /* channels 36,40,44,48; indoor only */
76 case 118: /* channels 52,56,60,64; dfs */
80 case 124: /* channels 149,153,157,161 */
81 case 125: /* channels 149,153,157,161,165,169 */
85 case 116: /* channels 36,44; 40 MHz; indoor only */
86 case 117: /* channels 40,48; 40 MHz; indoor only */
87 case 119: /* channels 5
330 p2p_channels_includes(const struct p2p_channels *channels, u8 reg_class, u8 channel) argument
347 p2p_channels_includes_freq(const struct p2p_channels *channels, unsigned int freq) argument
396 p2p_get_pref_freq(struct p2p_data *p2p, const struct p2p_channels *channels) argument
450 p2p_channel_pick_random(const u8 *channels, unsigned int num_channels) argument
[all...]
/external/chromium_org/media/audio/sounds/
H A Dwav_audio_handler_unittest.cc20 ASSERT_EQ(2, params.channels());
30 params.channels(), handler.data().size() / params.channels());
/external/chromium_org/third_party/opus/src/celt/
H A Dopus_custom_demo.c51 opus_int32 frame_size, channels, rate; local
64 fprintf (stderr, "Usage: test_opus_custom <rate> <channels> <frame size> "
71 channels = atoi(argv[2]);
104 enc = opus_custom_encoder_create(mode, channels, &err);
112 dec = opus_custom_decoder_create(mode, channels, &err);
128 in = (opus_int16*)malloc(frame_size*channels*sizeof(opus_int16));
129 out = (opus_int16*)malloc(frame_size*channels*sizeof(opus_int16));
134 err = fread(in, sizeof(short), frame_size*channels, fin);
174 for (i=0;i<ret*channels;i++)
178 for (i=0;i<ret*channels;
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
H A DPacketLossTest.h24 std::string out_file_name, int channels, int loss_rate,
40 std::string in_file_name, int sample_rate, int channels,
50 PacketLossTest(int channels, int expected_loss_rate_, int actual_loss_rate,
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
H A Dinput_audio_file.cc41 size_t channels,
47 for (int j = static_cast<int>(channels - 1); j >= 0; --j) {
48 destination[i * channels + j] = source[i];
40 DuplicateInterleaved(const int16_t* source, size_t samples, size_t channels, int16_t* destination) argument
/external/libopus/celt/
H A Dopus_custom_demo.c51 opus_int32 frame_size, channels, rate; local
64 fprintf (stderr, "Usage: test_opus_custom <rate> <channels> <frame size> "
71 channels = atoi(argv[2]);
104 enc = opus_custom_encoder_create(mode, channels, &err);
112 dec = opus_custom_decoder_create(mode, channels, &err);
128 in = (opus_int16*)malloc(frame_size*channels*sizeof(opus_int16));
129 out = (opus_int16*)malloc(frame_size*channels*sizeof(opus_int16));
134 err = fread(in, sizeof(short), frame_size*channels, fin);
174 for (i=0;i<ret*channels;i++)
178 for (i=0;i<ret*channels;
[all...]
/external/chromium_org/third_party/opus/src/include/
H A Dopus_custom.h135 * @param [in] channels <tt>int</tt>: Number of channels
140 int channels
153 * @param [in] channels <tt>int</tt>: Number of channels
159 int channels
170 * @param [in] channels <tt>int</tt>: Number of channels
176 int channels,
246 * @param [in] channels <t
[all...]
/external/chromium_org/third_party/webrtc/examples/android/opensl_loopback/
H A Dfake_audio_device_buffer.cc41 int32_t FakeAudioDeviceBuffer::SetRecordingChannels(uint8_t channels) { argument
42 assert(channels > 0);
43 record_channels_ = channels;
49 int32_t FakeAudioDeviceBuffer::SetPlayoutChannels(uint8_t channels) { argument
50 assert(channels > 0);
51 play_channels_ = channels;
/external/libopus/include/
H A Dopus_custom.h135 * @param [in] channels <tt>int</tt>: Number of channels
140 int channels
153 * @param [in] channels <tt>int</tt>: Number of channels
159 int channels
170 * @param [in] channels <tt>int</tt>: Number of channels
176 int channels,
246 * @param [in] channels <t
[all...]
/external/chromium_org/media/base/
H A Daudio_fifo.cc40 AudioFifo::AudioFifo(int channels, int frames) argument
41 : audio_bus_(AudioBus::Create(channels, frames)),
57 DCHECK_EQ(source->channels(), audio_bus_->channels());
69 // Copy all channels from the source to the FIFO. Wrap around if needed.
70 for (int ch = 0; ch < source->channels(); ++ch) {
91 DCHECK_EQ(destination->channels(), audio_bus_->channels());
107 // For all channels, remove the requested amount of data from the FIFO
109 for (int ch = 0; ch < destination->channels();
[all...]
/external/chromium_org/remoting/host/
H A Daudio_silence_detector.cc30 void AudioSilenceDetector::Reset(int sampling_rate, int channels) { argument
34 sampling_rate * channels * kSilencePeriodThresholdSeconds;
H A Daudio_silence_detector.h21 void Reset(int sampling_rate, int channels);
/external/chromium_org/sandbox/win/src/
H A Dipc_unittest.cc21 // Calculate how many channels we can fit in the shared memory.
22 total_shared_size -= offsetof(IPCControl, channels);
27 offsetof(IPCControl, channels);
43 ChannelControl& channel = client_control->channels[ix];
57 ChannelControl& channel = client_control->channels[ix];
80 // Make 7 channels of kIPCChannelSize (1kb) each. Test that we lock and
81 // unlock channels properly.
90 // Test that we lock the first 3 channels in sequence.
92 EXPECT_TRUE(mem + client_control->channels[0].channel_base == buff0);
93 EXPECT_EQ(kBusyChannel, client_control->channels[
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DServiceWorkerClient.cpp29 OwnPtr<MessagePortChannelArray> channels = MessagePort::disentanglePorts(ports, exceptionState); local
34 OwnPtr<WebMessagePortChannelArray> webChannels = MessagePort::toWebMessagePortChannelArray(channels.release());
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/mock/
H A Dmock_rtp_payload_strategy.h26 const uint8_t channels,
37 const uint8_t channels,
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DBox.java24 import java.nio.channels.ReadableByteChannel;
25 import java.nio.channels.WritableByteChannel;
/external/chromium_org/third_party/opus/src/src/
H A Dopus_decoder.c58 int channels; member in struct:OpusDecoder
87 int opus_decoder_get_size(int channels) argument
91 if (channels<1 || channels > 2)
97 celtDecSizeBytes = celt_decoder_get_size(channels);
101 int opus_decoder_init(OpusDecoder *st, opus_int32 Fs, int channels) argument
108 || (channels!=1&&channels!=2))
111 OPUS_CLEAR((char*)st, opus_decoder_get_size(channels));
122 st->stream_channels = st->channels
143 opus_decoder_create(opus_int32 Fs, int channels, int *error) argument
172 smooth_fade(const opus_val16 *in1, const opus_val16 *in2, opus_val16 *out, int overlap, int channels, const opus_val16 *window, opus_int32 Fs) argument
[all...]
/external/libopus/src/
H A Dopus_decoder.c58 int channels; member in struct:OpusDecoder
87 int opus_decoder_get_size(int channels) argument
91 if (channels<1 || channels > 2)
97 celtDecSizeBytes = celt_decoder_get_size(channels);
101 int opus_decoder_init(OpusDecoder *st, opus_int32 Fs, int channels) argument
108 || (channels!=1&&channels!=2))
111 OPUS_CLEAR((char*)st, opus_decoder_get_size(channels));
122 st->stream_channels = st->channels
143 opus_decoder_create(opus_int32 Fs, int channels, int *error) argument
172 smooth_fade(const opus_val16 *in1, const opus_val16 *in2, opus_val16 *out, int overlap, int channels, const opus_val16 *window, opus_int32 Fs) argument
[all...]
/external/chromium_org/content/renderer/media/
H A Daudio_renderer_mixer_manager.h83 if (a.second.channels() != b.second.channels())
84 return a.second.channels() < b.second.channels();
/external/chromium_org/media/filters/
H A Daudio_file_reader.cc108 codec_context_->channel_layout, codec_context_->channels) ==
114 channels_ = codec_context_->channels;
131 DCHECK_EQ(audio_bus->channels(), channels());
132 if (audio_bus->channels() != channels())
181 int channels = av_get_channel_layout_nb_channels( local
184 int channels = av_frame->channels; local
187 channels !
213 int channels = audio_bus->channels(); local
[all...]

Completed in 456 milliseconds

1234567891011>>