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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/media/base/
channel_mixer.h 22 // to list of input channels. The transform renders all of the output channels,
24 // input channels as defined in the matrix.
31 // Transforms all channels from |input| into |output| channels.
38 // 2D matrix of output channels to input channels.
41 // Optimization case for when we can simply remap the input channels to output
42 // channels and don't need to do a multiply-accumulate loop over |matrix_|.
audio_bus.cc 24 static int CalculateMemorySizeInternal(int channels, int frames,
35 return sizeof(float) * channels * aligned_frames;
48 const int channels = dest->channels(); local
49 for (int ch = 0; ch < channels; ++ch) {
52 ++i, offset += channels) {
68 const int channels = source->channels(); local
69 for (int ch = 0; ch < channels; ++ch) {
72 ++i, offset += channels) {
    [all...]
multi_channel_resampler_unittest.cc 45 void InitializeAudioData(int channels, int frames) {
47 audio_bus_ = AudioBus::Create(channels, frames);
57 EXPECT_EQ(audio_bus->channels(), audio_bus_->channels());
58 for (int i = 0; i < audio_bus->channels(); ++i)
63 void MultiChannelTest(int channels, int frames, double expected_max_rms_error,
65 InitializeAudioData(channels, frames);
67 channels, kScaleFactor, SincResampler::kDefaultRequestSize, base::Bind(
85 void HighLatencyTest(int channels) {
86 MultiChannelTest(channels, kHighLatencySize, kHighLatencyMaxRMSError
    [all...]
multi_channel_resampler.cc 14 MultiChannelResampler::MultiChannelResampler(int channels,
19 wrapped_resampler_audio_bus_(AudioBus::CreateWrapper(channels)),
22 resamplers_.reserve(channels);
23 for (int i = 0; i < channels; ++i) {
32 // Allocate storage for all channels except the first, which will use the
34 if (channels > 1) {
35 resampler_audio_bus_ = AudioBus::Create(channels - 1, request_size);
36 for (int i = 0; i < resampler_audio_bus_->channels(); ++i) {
46 DCHECK_EQ(static_cast<size_t>(audio_bus->channels()), resamplers_.size());
49 if (audio_bus->channels() == 1)
    [all...]
channel_mixer.cc 20 // Default scale factor for mixing two channels together. We use a different
64 // Special case for 5.0, 5.1 with back channels when upmixed to 7.0, 7.1,
77 // Create the transformation matrix of input channels to output channels.
79 // if the transformation is just a remapping of channels (no mixing).
83 // Result transformation of input channels to output channels
94 std::vector<Channels> unaccounted_inputs_;
96 // Helper methods for managing unaccounted input channels.
97 void AccountFor(Channels ch)
    [all...]
audio_buffer_queue_unittest.cc 32 const int channels = 1; local
38 kSampleFormatU8, channels, 10, 1, frames, kNoTime, kNoTime));
43 kSampleFormatU8, channels, 20, 1, frames, kNoTime, kNoTime));
48 const int channels = 1; local
55 kSampleFormatU8, channels, 10, 1, frames, kNoTime, kNoTime));
58 kSampleFormatU8, channels, 10, 1, frames, kNoTime, kNoTime));
61 kSampleFormatU8, channels, 10, 1, frames, kNoTime, kNoTime));
64 kSampleFormatU8, channels, 10, 1, frames, kNoTime, kNoTime));
67 kSampleFormatU8, channels, 10, 1, frames, kNoTime, kNoTime));
72 const int channels = 1 local
118 const int channels = 2; local
141 const int channels = 2; local
179 const int channels = 4; local
202 const int channels = 2; local
224 const int channels = 2; local
252 const int channels = 2; local
275 const int channels = 2; local
299 const int channels = 16; local
328 const int channels = 4; local
374 const int channels = 2; local
427 const int channels = 2; local
    [all...]
  /external/wpa_supplicant_8/src/p2p/
p2p_utils.c 61 /* 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 52,60; 40 MHz; dfs *
    [all...]
  /libcore/luni/src/main/java/java/nio/
SelectorProviderImpl.java 21 import java.nio.channels.DatagramChannel;
22 import java.nio.channels.Pipe;
23 import java.nio.channels.ServerSocketChannel;
24 import java.nio.channels.SocketChannel;
25 import java.nio.channels.spi.AbstractSelector;
26 import java.nio.channels.spi.SelectorProvider;
29 * @hide for java.nio.channels.spi.SelectorProvider only.
  /external/chromium_org/chrome/common/extensions/docs/templates/private/intro_tables/
beta_message.html 2 <a href="http://www.chromium.org/getting-involved/dev-channel">dev</a> channels only.
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
package.html 5 <p>Contains APIs that control the routing of media channels and streams from the current device
  /libcore/luni/src/test/java/libcore/java/nio/channels/
ChannelsTest.java 17 package libcore.java.nio.channels;
21 import java.nio.channels.Channels;
22 import java.nio.channels.IllegalBlockingModeException;
23 import java.nio.channels.Pipe;
24 import java.nio.channels.WritableByteChannel;
32 Channels.newInputStream(sourceChannel).read();
45 Channels.newReader(sourceChannel, "UTF-8").read();
  /external/chromium_org/media/filters/
wsola_internals.cc 29 int channels) {
32 for (int n = 0; n < channels; ++n) {
45 DCHECK_EQ(a->channels(), b->channels());
51 memset(dot_product, 0, sizeof(*dot_product) * a->channels());
52 for (int k = 0; k < a->channels(); ++k) {
65 int channels = input->channels(); local
67 for (int k = 0; k < input->channels(); ++k) {
80 energy[k + n * channels] = energy[k + (n - 1) * channels] - *slide_out
108 int channels = search_segment->channels(); local
187 int channels = search_block->channels(); local
217 int channels = search_block->channels(); local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
ChannelsTest.java 16 package org.apache.harmony.nio.tests.java.nio.channels;
30 import java.nio.channels.Channels;
31 import java.nio.channels.ClosedChannelException;
32 import java.nio.channels.IllegalBlockingModeException;
33 import java.nio.channels.ReadableByteChannel;
34 import java.nio.channels.ServerSocketChannel;
35 import java.nio.channels.SocketChannel;
36 import java.nio.channels.WritableByteChannel;
120 ReadableByteChannel rbChannel = Channels.newChannel(this.fins)
    [all...]
SelectionKeyTest.java 17 package org.apache.harmony.nio.tests.java.nio.channels;
22 import java.nio.channels.CancelledKeyException;
23 import java.nio.channels.SelectableChannel;
24 import java.nio.channels.SelectionKey;
25 import java.nio.channels.Selector;
26 import java.nio.channels.SocketChannel;
97 * @tests java.nio.channels.SelectionKey#attach(Object)
115 * @tests java.nio.channels.SelectionKey#attachment()
126 * @tests java.nio.channels.SelectionKey#channel()
136 * @tests java.nio.channels.SelectionKey#interestOps(
    [all...]
PipeTest.java 17 package org.apache.harmony.nio.tests.java.nio.channels;
21 import java.nio.channels.Pipe;
22 import java.nio.channels.Pipe.SinkChannel;
23 import java.nio.channels.Pipe.SourceChannel;
34 * @tests java.nio.channels.Pipe#open()
42 * @tests java.nio.channels.Pipe#sink()
51 * @tests java.nio.channels.Pipe#source()
  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/spi/
MockAbstractSelector.java 17 package org.apache.harmony.nio.tests.java.nio.channels.spi;
20 import java.nio.channels.SelectionKey;
21 import java.nio.channels.Selector;
22 import java.nio.channels.spi.AbstractSelectableChannel;
23 import java.nio.channels.spi.AbstractSelectionKey;
24 import java.nio.channels.spi.AbstractSelector;
25 import java.nio.channels.spi.SelectorProvider;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sunaudio.py 27 channels = get_long_be(fp.read(4))
35 return (data_size, encoding, sample_rate, channels, info)
41 data_size, encoding, sample_rate, channels, info = hdr
48 print 'Channels: ', channels
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sunaudio.py 27 channels = get_long_be(fp.read(4))
35 return (data_size, encoding, sample_rate, channels, info)
41 data_size, encoding, sample_rate, channels, info = hdr
48 print 'Channels: ', channels
  /external/chromium_org/sandbox/win/src/
ipc_unittest.cc 21 // 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[0].state)
    [all...]
  /external/chromium_org/chrome/utility/cloud_print/
bitmap_image.cc 17 data_(new uint8[size.GetArea() * channels()]) {
23 uint8 BitmapImage::channels() const { function in class:cloud_print::BitmapImage
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/
volume.h 42 * can store the volume of all channels at once.
75 * \li pa_cvolume_channels_equal_to() - Tests if all channels of a pa_cvolume
77 * \li pa_cvolume_is_muted() - Tests if all channels of a pa_cvolume
79 * \li pa_cvolume_is_norm() - Tests if all channels of a pa_cvolume structure
81 * \li pa_cvolume_set() - Set all channels of a pa_cvolume structure to a
83 * \li pa_cvolume_reset() - Set all channels of a pa_cvolume structure to a
85 * \li pa_cvolume_mute() - Set all channels of a pa_cvolume structure to a
87 * \li pa_cvolume_avg() - Return the average volume of all channels.
111 uint8_t channels; /**< Number of channels */ member in struct:pa_cvolume
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
volume.h 42 * can store the volume of all channels at once.
75 * \li pa_cvolume_channels_equal_to() - Tests if all channels of a pa_cvolume
77 * \li pa_cvolume_is_muted() - Tests if all channels of a pa_cvolume
79 * \li pa_cvolume_is_norm() - Tests if all channels of a pa_cvolume structure
81 * \li pa_cvolume_set() - Set all channels of a pa_cvolume structure to a
83 * \li pa_cvolume_reset() - Set all channels of a pa_cvolume structure to a
85 * \li pa_cvolume_mute() - Set all channels of a pa_cvolume structure to a
87 * \li pa_cvolume_avg() - Return the average volume of all channels.
111 uint8_t channels; /**< Number of channels */ member in struct:pa_cvolume
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
volume.h 42 * can store the volume of all channels at once.
75 * \li pa_cvolume_channels_equal_to() - Tests if all channels of a pa_cvolume
77 * \li pa_cvolume_is_muted() - Tests if all channels of a pa_cvolume
79 * \li pa_cvolume_is_norm() - Tests if all channels of a pa_cvolume structure
81 * \li pa_cvolume_set() - Set all channels of a pa_cvolume structure to a
83 * \li pa_cvolume_reset() - Set all channels of a pa_cvolume structure to a
85 * \li pa_cvolume_mute() - Set all channels of a pa_cvolume structure to a
87 * \li pa_cvolume_avg() - Return the average volume of all channels.
111 uint8_t channels; /**< Number of channels */ member in struct:pa_cvolume
    [all...]
  /external/chromium_org/third_party/mesa/src/docs/
osmesa.html 35 <h2>Deep color channels</h2>
38 For some applications 8-bit color channels don't have sufficient
40 OSMesa supports 16-bit and 32-bit color channels through the OSMesa interface.
41 When using 16-bit channels, channels are GLushorts and RGBA pixels occupy
43 When using 32-bit channels, channels are GLfloats and RGBA pixels occupy
49 one of 8, 16 or 32-bit channels.
50 With Mesa 6.5.1, Mesa can be compiled for either 8, 16 or 32-bit channels
51 and render into any of the smaller size channels
    [all...]
  /external/mesa3d/docs/
osmesa.html 35 <h2>Deep color channels</h2>
38 For some applications 8-bit color channels don't have sufficient
40 OSMesa supports 16-bit and 32-bit color channels through the OSMesa interface.
41 When using 16-bit channels, channels are GLushorts and RGBA pixels occupy
43 When using 32-bit channels, channels are GLfloats and RGBA pixels occupy
49 one of 8, 16 or 32-bit channels.
50 With Mesa 6.5.1, Mesa can be compiled for either 8, 16 or 32-bit channels
51 and render into any of the smaller size channels
    [all...]

Completed in 279 milliseconds

1 2 3 4 5 6 7 8 91011>>