OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Band
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/webrtc/modules/audio_processing/
audio_buffer.h
27
enum
Band
{
50
// Returns a pointer array to the full-
band
channels.
63
// split_bands(channel)[
band
][sample].
66
// 0 <=
band
< |num_bands_|
73
// Returns a pointer array to the channels for a specific
band
.
75
// split_channels(
band
)[channel][sample].
77
// 0 <=
band
< |num_bands_|
80
int16_t* const* split_channels(
Band
band
);
81
const int16_t* const* split_channels_const(
Band
band) const
[
all
...]
audio_buffer.cc
213
const int16_t* const* AudioBuffer::split_channels_const(
Band
band
) const {
215
return split_data_->ibuf_const()->channels(
band
);
217
return
band
== kBand0To8kHz ? data_->ibuf_const()->channels() : nullptr;
221
int16_t* const* AudioBuffer::split_channels(
Band
band
) {
224
return split_data_->ibuf()->channels(
band
);
226
return
band
== kBand0To8kHz ? data_->ibuf()->channels() : nullptr;
270
const float* const* AudioBuffer::split_channels_const_f(
Band
band
) const
[
all
...]
/external/wpa_supplicant_8/hostapd/hidl/1.1/
hostapd.cpp
154
switch (iface_params.V1_0.channelParams.
band
) {
155
case IHostapd::
Band
::BAND_2_4_GHZ:
158
case IHostapd::
Band
::BAND_5_GHZ:
166
case IHostapd::
Band
::BAND_ANY:
175
wpa_printf(MSG_ERROR, "Invalid
band
");
Completed in 304 milliseconds