HomeSort by relevance Sort by last modified time
    Searched refs:channel (Results 51 - 75 of 2925) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/voice_engine/include/
voe_base.h 16 // - Multi-channel support (mixing, sending to multiple destinations etc.).
54 virtual void CallbackOnError(int channel, int errCode) = 0;
139 // Creates a new channel and allocates the required resources for it.
140 // One can use |config| to configure the channel. Currently that is used for
142 // Returns channel ID or -1 in case of an error.
146 // Deletes an existing channel and releases the utilized resources.
148 virtual int DeleteChannel(int channel) = 0;
151 // incoming RTP/RTCP packets on the specified |channel|.
152 virtual int StartReceive(int channel) = 0;
154 // Stops receiving incoming RTP/RTCP packets on the specified |channel|
    [all...]
voe_neteq_stats.h 35 virtual int GetNetworkStatistics(int channel, NetworkStatistics& stats) = 0;
39 int channel,
voe_audio_processing.h 49 virtual void OnRxVad(int channel, int vadDecision) = 0;
131 // |channel|. Intended for advanced usage only.
132 virtual int SetRxNsStatus(int channel,
137 virtual int GetRxNsStatus(int channel, bool& enabled, NsModes& mode) = 0;
141 // for the specified |channel|. Intended for advanced usage only.
142 virtual int SetRxAgcStatus(int channel,
147 virtual int GetRxAgcStatus(int channel, bool& enabled, AgcModes& mode) = 0;
150 // specified |channel|.
151 virtual int SetRxAgcConfig(int channel, AgcConfig config) = 0;
154 virtual int GetRxAgcConfig(int channel, AgcConfig& config) = 0
    [all...]
  /external/webrtc/webrtc/voice_engine/mock/
mock_voe_observer.h 24 MOCK_METHOD2(CallbackOnError, void(int channel, int error_code));
  /external/e2fsprogs/lib/ext2fs/
ext2_io.h 44 errcode_t (*read_error)(io_channel channel,
51 errcode_t (*write_error)(io_channel channel,
76 errcode_t (*open)(const char *name, int flags, io_channel *channel);
77 errcode_t (*close)(io_channel channel);
78 errcode_t (*set_blksize)(io_channel channel, int blksize);
79 errcode_t (*read_blk)(io_channel channel, unsigned long block,
81 errcode_t (*write_blk)(io_channel channel, unsigned long block,
83 errcode_t (*flush)(io_channel channel);
84 errcode_t (*write_byte)(io_channel channel, unsigned long offset,
86 errcode_t (*set_option)(io_channel channel, const char *option
    [all...]
unix_io.c 109 static errcode_t unix_get_stats(io_channel channel, io_stats *stats)
115 EXT2_CHECK_MAGIC(channel, EXT2_ET_MAGIC_IO_CHANNEL);
116 data = (struct unix_private_data *) channel->private_data;
128 static errcode_t raw_read_blk(io_channel channel,
139 size = (count < 0) ? -count : count * channel->block_size;
141 location = ((ext2_loff_t) block * channel->block_size) + data->offset;
145 if ((channel->align == 0) ||
146 (IS_ALIGNED(buf, channel->align) &&
147 IS_ALIGNED(size, channel->align))) {
155 ((channel->align == 0) |
    [all...]
  /external/webrtc/webrtc/voice_engine/
voe_rtp_rtcp_impl.cc 18 #include "webrtc/voice_engine/channel.h"
48 int VoERTP_RTCPImpl::SetLocalSSRC(int channel, unsigned int ssrc) {
50 "SetLocalSSRC(channel=%d, %lu)", channel, ssrc);
55 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
56 voe::Channel* channelPtr = ch.channel();
59 "SetLocalSSRC() failed to locate channel");
65 int VoERTP_RTCPImpl::GetLocalSSRC(int channel, unsigned int& ssrc) {
70 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
    [all...]
channel_proxy.cc 17 #include "webrtc/voice_engine/channel.h"
25 RTC_CHECK(channel_owner_.channel());
31 channel()->SetRTCPStatus(enable);
36 int error = channel()->SetLocalSSRC(ssrc);
44 int error = channel()->SetRTCP_CNAME(c_name_limited.c_str());
50 int error = channel()->SetSendAbsoluteSenderTimeStatus(enable, id);
56 int error = channel()->SetSendAudioLevelIndicationStatus(enable, id);
62 channel()->EnableSendTransportSequenceNumber(id);
67 int error = channel()->SetReceiveAbsoluteSenderTimeStatus(enable, id);
73 int error = channel()->SetReceiveAudioLevelIndicationStatus(enable, id)
147 Channel* ChannelProxy::channel() const { function in class:webrtc::voe::ChannelProxy
    [all...]
voe_neteq_stats_impl.h 23 int GetNetworkStatistics(int channel, NetworkStatistics& stats) override;
25 int GetDecodingCallStatistics(int channel,
  /external/wpa_supplicant_8/src/drivers/
driver_macsec_qca.c 260 u32 *channel)
267 *channel = i;
278 u32 channel)
280 os_memcpy(&map[channel].sci, sci, sizeof(struct ieee802_1x_mka_sci));
286 u32 *channel)
289 channel);
295 u32 channel)
298 channel);
304 u32 *channel)
307 channel);
327 u32 channel; local
355 u32 channel; local
374 u32 channel; local
425 u32 channel; local
477 u32 channel; local
501 u32 channel; local
526 u32 channel; local
546 u32 channel; local
594 u32 channel; local
632 u32 channel; local
657 u32 channel; local
697 u32 channel; local
717 u32 channel; local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/
background_noise.cc 38 for (size_t channel = 0; channel < num_channels_; ++channel) {
39 channel_parameters_[channel].Reset();
128 int32_t BackgroundNoise::Energy(size_t channel) const {
129 assert(channel < num_channels_);
130 return channel_parameters_[channel].energy;
133 void BackgroundNoise::SetMuteFactor(size_t channel, int16_t value) {
134 assert(channel < num_channels_);
135 channel_parameters_[channel].mute_factor = value
    [all...]
background_noise.h 44 // Returns |energy_| for |channel|.
45 int32_t Energy(size_t channel) const;
47 // Sets the value of |mute_factor_| for |channel| to |value|.
48 void SetMuteFactor(size_t channel, int16_t value);
50 // Returns |mute_factor_| for |channel|.
51 int16_t MuteFactor(size_t channel) const;
53 // Returns a pointer to |filter_| for |channel|.
54 const int16_t* Filter(size_t channel) const;
56 // Returns a pointer to |filter_state_| for |channel|.
57 const int16_t* FilterState(size_t channel) const
    [all...]
  /external/adhd/cras/src/dsp/
eq2.h 13 /* "eq2" is a two channel version of the "eq" filter. It processes two channels
18 /* Maximum number of biquad filters an EQ2 can have per channel */
30 * biquad filters per channel.
33 * channel - 0 or 1. The channel we want to append the filter to.
42 int eq2_append_biquad(struct eq2 *eq2, int channel,
50 * channel - 0 or 1. The channel we want to append the filter to.
55 int eq2_append_biquad_direct(struct eq2 *eq2, int channel,
61 * data0 - The array of channel 0 audio samples
    [all...]
  /external/opencv/cvaux/include/
cvaux.hpp 77 int get_min_ch_val( int channel ) const // get the minimum allowed value of the specified channel
78 { return m_min_ch_val[channel]; }
80 int get_max_ch_val( int channel ) const // get the maximum allowed value of the specified channel
81 { return m_max_ch_val[channel]; }
94 bool set_min_ch_val( int channel, int val ) // set the minimum allowed value of the specified channel
95 { m_min_ch_val[channel] = val; return true; }
96 bool set_max_ch_val( int channel, int val ) // set the maximum allowed value of the specified channe
    [all...]
  /external/webrtc/webrtc/p2p/base/
p2ptransport.cc 34 void P2PTransport::DestroyTransportChannel(TransportChannelImpl* channel) {
35 delete channel;
  /frameworks/base/tests/utils/testutils/java/com/android/internal/util/test/
BidirectionalAsyncChannelServer.java 32 * Provides an interface for the server side implementation of a bidirectional channel as described
49 AsyncChannel channel = mClients.get(msg.replyTo);
52 if (channel != null) {
54 channel.replyToMessage(msg,
58 channel = new AsyncChannel();
59 mClients.put(msg.replyTo, channel);
60 channel.connected(context, this, msg.replyTo);
61 channel.replyToMessage(msg, AsyncChannel.CMD_CHANNEL_FULLY_CONNECTED,
66 channel.disconnect();
  /packages/apps/TV/tests/jank/src/com/android/tv/tests/jank/
Utils.java 27 /** Presses channel number to tune to {@code channel}. */
28 public static void pressKeysForChannelNumber(String channel, UiDevice uiDevice) {
29 UiDeviceUtils.pressKeys(uiDevice, channel);
  /packages/apps/TV/tuner/src/com/android/tv/tuner/source/
TsStreamer.java 28 * Starts streaming the data for channel scanning process.
30 * @param channel {@link ChannelScanFileParser.ScanChannel} to be scanned
33 boolean startStream(ChannelScanFileParser.ScanChannel channel);
36 * Starts streaming the data for channel playing or recording.
38 * @param channel {@link TunerChannel} to tune
41 boolean startStream(TunerChannel channel);
  /system/chre/apps/wifi_offload/test/
wifioffloadutility_test.cc 24 int channel = wifi_offload::utility::Ieee80211FrequencyToChannel( local
27 static_cast<uint8_t>(channel));
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/MemoryInit/Pei/
meminit_utils.h 51 void set_rcvn(uint8_t channel, uint8_t rank, uint8_t byte_lane, uint32_t pi_count);
52 void set_rdqs(uint8_t channel, uint8_t rank, uint8_t byte_lane, uint32_t pi_count);
53 void set_wdqs(uint8_t channel, uint8_t rank, uint8_t byte_lane, uint32_t pi_count);
54 void set_wdq(uint8_t channel, uint8_t rank, uint8_t byte_lane, uint32_t pi_count);
55 void set_wcmd(uint8_t channel, uint32_t pi_count);
56 void set_wclk(uint8_t channel, uint8_t grp, uint32_t pi_count);
57 void set_wctl(uint8_t channel, uint8_t rank, uint32_t pi_count);
58 void set_vref(uint8_t channel, uint8_t byte_lane, uint32_t setting);
59 uint32_t get_rcvn(uint8_t channel, uint8_t rank, uint8_t byte_lane);
60 uint32_t get_rdqs(uint8_t channel, uint8_t rank, uint8_t byte_lane);
    [all...]
  /external/webrtc/talk/media/base/
hybriddataengine.h 56 DataMediaChannel* channel = NULL; local
58 channel = first_->CreateChannel(data_channel_type);
60 if (!channel && second_) {
61 channel = second_->CreateChannel(data_channel_type);
63 return channel;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
CommonTokenStream.java 32 * and tokens are filtered for a certain channel (the parser will only
40 * is that this stream knows how to ignore off channel tokens. There may be
42 * whitespace and comments etc. to the parser on a hidden channel (i.e.,
43 * you set $channel instead of calling skip() in lexer rules.)
49 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
50 protected int channel = Token.DEFAULT_CHANNEL; field in class:CommonTokenStream
58 public CommonTokenStream(TokenSource tokenSource, int channel) {
60 this.channel = channel;
63 /** Always leave p on an on-channel token. *
    [all...]
  /packages/apps/TV/src/com/android/tv/
ChannelTuner.java 29 import com.android.tv.data.api.Channel;
39 * It manages the current tuned channel among browsable channels. And it determines the next channel
40 * by channel up/down. But, it doesn't actually tune through TvView.
48 private final List<Channel> mChannels = new ArrayList<>();
49 private final List<Channel> mBrowsableChannels = new ArrayList<>();
50 private final Map<Long, Channel> mChannelMap = new HashMap<>();
58 @Nullable private Channel mCurrentChannel;
131 /** Returns browsable channel lists. */
132 public List<Channel> getBrowsableChannelList()
192 Channel channel = getAdjacentBrowsableChannel(up); local
211 Channel channel = mChannels.get(channelIndex); local
224 Channel channel = mChannels.get(nextChannelIndex); local
241 Channel channel = mChannelMap.get(channelId); local
335 Channel channel = channels.get(i); local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_pack.py 69 for channel in channels:
70 if channel.type == VOID:
71 if channel.size:
72 print ' unsigned %s:%u;' % (channel.name, channel.size)
73 elif channel.type == UNSIGNED:
74 print ' unsigned %s:%u;' % (channel.name, channel.size)
75 elif channel.type in (SIGNED, FIXED):
76 print ' int %s:%u;' % (channel.name, channel.size
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
colorspace.cpp 30 uint8 channel[4]; member in union:Rgba
33 // Channel index constants
48 color.channel[kRed] = clamp(y + static_cast<int>(1.402 * v));
49 color.channel[kGreen] = clamp(y - static_cast<int>(0.344 * u + 0.714 * v));
50 color.channel[kBlue] = clamp(y + static_cast<int>(1.772 * u));
51 color.channel[kAlpha] = 0xFF;
103 color_out.channel[kRed] = color_in.channel[kGreen];
104 color_out.channel[kGreen] = color_in.channel[kBlue]
    [all...]

Completed in 327 milliseconds

1 23 4 5 6 7 8 91011>>