HomeSort by relevance Sort by last modified time
    Searched full:channels (Results 76 - 100 of 4077) sorted by null

1 2 34 5 6 7 8 91011>>

  /packages/apps/TV/tests/input/src/com/android/tv/testinput/
TestTvInputSetupActivity.java 66 Log.i(TAG, "Registering " + channelCount + " channels");
67 List<ChannelInfo> channels = new ArrayList<>(); local
69 channels.add(ChannelInfo.create(context, i));
71 ChannelUtils.updateChannels(context, inputId, channels);
76 // Reload channels so we have the ids.
90 values.put(TvContract.Channels.COLUMN_BROWSABLE, 1);
102 // TODO: add UI to ask how many channels
106 // registered channels properly.
  /cts/tests/tvprovider/src/android/tvprovider/cts/
TvProviderPerfTest.java 30 import android.media.tv.TvContract.Channels;
74 mContentResolver.delete(Channels.CONTENT_URI, null, null);
93 values.put(Channels.COLUMN_INPUT_ID, mInputId);
94 values.put(Channels.COLUMN_SERVICE_TYPE,
95 Channels.SERVICE_TYPE_AUDIO_VIDEO);
96 values.put(Channels.COLUMN_TYPE, Channels.TYPE_OTHER);
98 ContentProviderOperation.newInsert(Channels.CONTENT_URI)
115 final String[] projection = { Channels._ID };
116 try (final Cursor cursor = mContentResolver.query(Channels.CONTENT_URI
    [all...]
  /external/autotest/client/cros/audio/
sox_utils.py 12 def _raw_format_args(channels, bits, rate):
14 args += ['-c', str(channels)]
20 filename, channels=2, bits=16, rate=48000, duration=None, frequence=440,
25 @param channels: The number of channels.
33 args += _raw_format_args(channels, bits, rate)
49 def noise_profile_cmd(input, output, channels=1, bits=16, rate=48000):
54 @param channels: The number of channels.
59 args += _raw_format_args(channels, bits, rate
    [all...]
  /packages/apps/TV/usbtuner/res/values/
strings.xml 37 <!-- Message shown when the scanned channels became invalid due to incompatible changes
38 found across application versions, hence a user is required to rescan the channels -->
40 channels.</string>
51 placement or direction to receive the most channels. For best results,
63 <string name="ut_setup_again_description">This will remove the channels found from the USB
64 tuner and scan for new channels again.\n\nVerify the USB tuner is plugged in and connected
66 placement or direction to receive the most channels. For best results, place it high and
79 connected to the tuner. Choose Cable if your channels come from a cable service provider.
83 <!-- Signal coming from the antenna that carries over-the-air, terrestrial channels -->
85 <!-- Signal for cable television channels --
    [all...]
  /development/samples/browseable/BluetoothChat/
_index.jd 12 (3) Establishing RFCOMM channels/sockets
  /external/webrtc/webrtc/common_audio/
channel_buffer.cc 48 const int16_t* const* int_channels = ibuf_.channels();
49 float* const* float_channels = fbuf_.channels();
62 int16_t* const* int_channels = ibuf_.channels();
63 const float* const* float_channels = fbuf_.channels();
  /external/webrtc/webrtc/modules/audio_coding/codecs/g711/
audio_decoder_pcm.cc 19 size_t AudioDecoderPcmU::Channels() const {
38 return static_cast<int>(encoded_len / Channels());
43 size_t AudioDecoderPcmA::Channels() const {
62 return static_cast<int>(encoded_len / Channels());
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
input_audio_file.h 44 // |channels| times to create an interleaved multi-channel signal where all
45 // channels are identical. The output |destination| must have the capacity to
46 // hold samples * channels elements. Note that |source| and |destination| can
49 size_t channels, int16_t* destination);
  /libcore/expectations/
taggedtests.txt 26 "java.nio.channels.DatagramChannel.ConnectedSend",
27 "java.nio.channels.FileChannel.ExpandingMap",
28 "java.nio.channels.FileChannel.Transfers",
29 "java.nio.channels.SocketChannel.Open",
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
MapModeTest.java 17 package org.apache.harmony.tests.java.nio.channels;
19 import java.nio.channels.FileChannel;
29 * java.nio.channels.FileChannel.MapMode#PRIVATE,READONLY,READWRITE
45 * java.nio.channels.FileChannel.MapMode#toString()
  /prebuilts/go/darwin-x86/test/chan/
zerosize.go 7 // Test making channels of a zero-sized type.
  /prebuilts/go/linux-x86/test/chan/
zerosize.go 7 // Test making channels of a zero-sized type.
  /system/media/audio_utils/include/audio_utils/
channels.h 26 * Expanded channels are filled with zeros and put at the end of each audio frame.
27 * Contracted channels are omitted from the end of each audio frame.
30 * \param in_buff_chans Specifies the number of channels in the input buffer.
32 * \param out_buff_chans Specifies the number of channels in the output buffer.
  /device/asus/fugu/
media_profiles.xml 39 <!ATTLIST Audio channels (1|2) #REQUIRED>
93 channels="1" />
106 channels="2" />
119 channels="1" />
132 channels="1" />
145 channels="2" />
159 channels="2" />
173 channels="2" />
186 channels="2" />
199 channels="1" /
    [all...]
  /device/huawei/angler/
media_profiles.xml 39 <!ATTLIST Audio channels (1|2) #REQUIRED>
92 channels="1" />
104 channels="1" />
116 channels="1" />
128 channels="2" />
140 channels="1" />
152 channels="1" />
164 channels="1" />
176 channels="1" />
188 channels="1" /
    [all...]
  /device/lge/bullhead/
media_profiles.xml 39 <!ATTLIST Audio channels (1|2) #REQUIRED>
92 channels="1" />
104 channels="1" />
116 channels="1" />
128 channels="2" />
140 channels="1" />
152 channels="1" />
164 channels="1" />
176 channels="1" />
188 channels="1" /
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/test/
debug_dump_test.cc 60 // Sets if converts stereo input signal to mono by discarding other channels.
67 // channels.
73 // Sets the required channels of the APM output.
74 void SetOutputChannels(int channels);
84 static void ReadAndDeinterleave(ResampleInputAudioFile* audio, int channels,
156 const int channels = mono ? 1 : input_file_channels_; local
157 input_config_.set_num_channels(channels);
168 const int channels = mono ? 1 : reverse_file_channels_; local
169 reverse_config_.set_num_channels(channels);
178 void DebugDumpGenerator::SetOutputChannels(int channels) {
    [all...]
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/res/values/
strings.xml 22 <string name="simple_setup_message">Do you want to register detected channels?</string>
25 <string name="rich_setup_add_channel">Add Channels</string>
26 <string name="rich_setup_update_channel">Update Channels</string>
  /external/libopus/include/
opus_multistream.h 107 * single packet, enabling support for up to 255 channels. Unlike an
124 * is configured to decode them to either 1 or 2 channels, respectively.
141 * The output channels specified by the encoder
197 * encoded channels (<code>streams +
209 int channels,
220 * @param channels <tt>int</tt>: Number of channels in the input signal.
223 * coded channels (<code>streams +
227 * This must be no more than the number of channels.
233 * encoded channels (<code>streams
    [all...]
  /external/opencv3/modules/core/perf/
perf_convertTo.cpp 26 int channels = get<3>(GetParam()); local
29 Mat src(sz, CV_MAKETYPE(depthSrc, channels));
31 Mat dst(sz, CV_MAKETYPE(depthDst, channels));
  /external/webrtc/webrtc/modules/audio_coding/codecs/g722/
audio_decoder_g722.h 27 size_t Channels() const override;
53 size_t Channels() const override;
57 // for left and right channels. The separated payloads are written to
  /external/webrtc/webrtc/modules/audio_coding/neteq/
audio_classifier.h 35 // input_length : must be channels * 960;
36 // channels : must be 1 (mono) or 2 (stereo).
37 bool Analysis(const int16_t* input, int input_length, int channels);
  /external/webrtc/webrtc/modules/audio_coding/test/
PacketLossTest.h 24 std::string out_file_name, int channels, int loss_rate,
41 std::string in_file_name, int sample_rate, int channels,
51 PacketLossTest(int channels, int expected_loss_rate_, int actual_loss_rate,
  /hardware/qcom/msm8960/original-kernel-headers/linux/
msm_audio_aac.h 46 /* Primary channel on both left and right channels */
48 /* Secondary channel on both left and right channels */
69 uint32_t channels; member in struct:msm_audio_aac_enc_config
  /hardware/qcom/msm8994/original-kernel-headers/linux/
msm_audio_aac.h 46 /* Primary channel on both left and right channels */
48 /* Secondary channel on both left and right channels */
70 uint32_t channels; member in struct:msm_audio_aac_enc_config

Completed in 306 milliseconds

1 2 34 5 6 7 8 91011>>