HomeSort by relevance Sort by last modified time
    Searched full:channels (Results 101 - 125 of 2412) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/pulse/
channelmap.h 35 * Channel maps provide a way to associate channels in a stream with a
51 * \li pa_channel_map_init_auto() - Create a standard channel map for a specific number of channels
54 * predefined one is known for the specified number of channels.
227 /**< Only aux channels */
238 * default channel mapping based on the number of channels. */
259 * channels of a stream. These values are relevant for conversion and
262 uint8_t channels; member in struct:pa_channel_map
263 /**< Number of channels */
281 * channels using default labels and return a pointer to it. This call
283 * specific number of channels and mapping. *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/pulse/
channelmap.h 35 * Channel maps provide a way to associate channels in a stream with a
51 * \li pa_channel_map_init_auto() - Create a standard channel map for a specific number of channels
54 * predefined one is known for the specified number of channels.
230 /**< Only aux channels */
241 * default channel mapping based on the number of channels. */
262 * channels of a stream. These values are relevant for conversion and
265 uint8_t channels; member in struct:pa_channel_map
266 /**< Number of channels */
284 * channels using default labels and return a pointer to it. This call
286 * specific number of channels and mapping. *
    [all...]
volume.h 45 * can store the volume of all channels at once.
78 * \li pa_cvolume_channels_equal_to() - Tests if all channels of a pa_cvolume
80 * \li pa_cvolume_is_muted() - Tests if all channels of a pa_cvolume
82 * \li pa_cvolume_is_norm() - Tests if all channels of a pa_cvolume structure
84 * \li pa_cvolume_set() - Set the first n channels of a pa_cvolume structure to
86 * \li pa_cvolume_reset() - Set the first n channels of a pa_cvolume structure
88 * \li pa_cvolume_mute() - Set the first n channels of a pa_cvolume structure
90 * \li pa_cvolume_avg() - Return the average volume of all channels.
136 uint8_t channels; /**< Number of channels */ member in struct:pa_cvolume
    [all...]
  /system/media/audio_utils/include/audio_utils/
format.h 66 * of at least as many channels as present in the dst_mask.
69 * idxary Updated array of indices of channels in the src frame for the dst frame
71 * dst_mask Bit mask corresponding to destination channels present
72 * src_mask Bit mask corresponding to source channels present
  /frameworks/av/services/audioflinger/tests/
resampler_tests.cpp 39 void resample(int channels, void *output,
52 (int32_t*) output + channels*i, thisFrames, provider);
72 void testBufferIncrement(size_t channels, bool useFloat,
81 provider.setChirp<float>(channels,
84 provider.setChirp<int16_t>(channels,
91 size_t outputFrameSize = channels * (useFloat ? sizeof(float) : sizeof(int32_t));
98 resampler = android::AudioResampler::create(format, channels, outputFreq, quality);
107 resample(channels, reference, outputFrames, refIncr, &provider, resampler);
116 resampler = android::AudioResampler::create(format, channels, outputFreq, quality);
131 resample(channels, test, outputFrames, outIncr, &provider, resampler)
    [all...]
  /external/libopus/include/
opus_custom.h 135 * @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 <tt>int</tt>: Number of channel
    [all...]
  /system/media/audio_utils/
tinysndfile.c 183 unsigned channels = little2u(&fmt[2]); local
185 if (channels != 1 && channels != 2 && channels != 4 && channels != 6 && channels != 8) {
187 fprintf(stderr, "unsupported channels %u\n", channels);
208 unsigned bytesPerFrame = (bitsPerSample >> 3) * channels;
211 handle->info.channels = channels
    [all...]
channels.c 18 #include <audio_utils/channels.h>
90 * single input channel to the first 2 output channels and 0-filling the remaining.
148 * first two input channels into the single output channel (and skipping the rest).
156 * NOTE: Overload of the summed channels is avoided by averaging the two input channels.
183 * by mixing the first two input channels into the single output channel (and skipping the rest).
189 * NOTE: Overload of the summed channels is avoided by averaging the two input channels.
215 * in_buff_channels Specifies the number of channels in the input buffer.
217 * out_buff_channels Specifies the number of channels in the output buffer
    [all...]
  /device/generic/goldfish/camera/
media_profiles.xml 39 <!ATTLIST Audio channels (1|2) #REQUIRED>
91 channels="1" />
104 channels="1" />
125 channels="1" />
138 channels="1" />
159 channels="1" />
172 channels="1" />
193 channels="1" />
206 channels="1" />
227 channels="1" /
    [all...]
  /system/extras/sound/
playwav.c 38 int pcm_play(unsigned rate, unsigned channels,
59 config.channel_count = channels;
137 void play_file(unsigned rate, unsigned channels,
150 pcm_play(rate, channels, fill_buffer, 0);
156 unsigned rate, channels; local
193 int wav_rec(const char *fn, unsigned channels, unsigned rate)
209 hdr.num_channels = channels;
335 unsigned channels = 1; local
346 channels = 2;
348 channels = 1
    [all...]
  /external/kernel-headers/original/uapi/linux/hsi/
hsi_char.h 53 uint32_t channels; member in struct:hsc_rx_config
58 uint32_t channels; member in struct:hsc_tx_config
  /external/libopus/src/
opus_demo.c 47 fprintf(stderr, "Usage: %s [-e] <application> <sampling rate (Hz)> <channels (1/2)> "
49 fprintf(stderr, " %s -d <sampling rate (Hz)> <channels (1/2)> "
200 static OpusEncoder *ms_opus_encoder_create(opus_int32 Fs, int channels, int application, int *error)
204 return (OpusEncoder *)opus_multistream_surround_encoder_create(Fs, channels, 1, &streams, &coupled_streams, mapping, application, error);
206 static OpusDecoder *ms_opus_decoder_create(opus_int32 Fs, int channels, int *error)
212 coupled_streams = channels==2;
213 return (OpusDecoder *)opus_multistream_decoder_create(Fs, channels, streams, coupled_streams, mapping, error);
226 int frame_size, channels; local
322 channels = atoi(argv[args]);
325 if (channels < 1 || channels > 2
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
Box.java 24 import java.nio.channels.ReadableByteChannel;
25 import java.nio.channels.WritableByteChannel;
  /external/wpa_supplicant_8/src/p2p/
p2p_invitation.c 77 p2p_buf_add_channel_list(buf, p2p->cfg->country, &p2p->channels);
110 struct p2p_channels *channels)
155 if (channels)
156 p2p_buf_add_channel_list(buf, p2p->cfg->country, channels);
183 struct p2p_channels all_channels, intersection, *channels = NULL; local
235 p2p_channels_union(&p2p->cfg->channels, &p2p->cfg->cli_channels,
241 p2p_dbg(p2p, "No common channels found");
246 p2p_channels_dump(p2p, "own channels", &p2p->cfg->channels);
247 p2p_channels_dump(p2p, "own client channels", &all_channels)
427 struct p2p_channels intersection, *channels = NULL; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/inc/
psy_main.h 52 Word16 channels,
57 Word16 psyMain(Word16 nChannels, /*!< total number of channels */
tns_func.h 33 Word16 channels,
40 Word16 channels,
  /libcore/luni/src/main/java/java/nio/channels/
ByteChannel.java 17 package java.nio.channels;
23 * writable byte channels.
  /libcore/luni/src/main/java/java/nio/channels/spi/
AbstractInterruptibleChannel.java 18 package java.nio.channels.spi;
21 import java.nio.channels.AsynchronousCloseException;
22 import java.nio.channels.Channel;
23 import java.nio.channels.ClosedByInterruptException;
24 import java.nio.channels.InterruptibleChannel;
28 * channels.
65 * {@link java.nio.channels.ClosedChannelException} is thrown.
73 * @see java.nio.channels.Channel#close()
  /libcore/luni/src/test/java/libcore/java/io/
InterruptedStreamTest.java 30 import java.nio.channels.ClosedByInterruptException;
31 import java.nio.channels.ClosedChannelException;
32 import java.nio.channels.Pipe;
33 import java.nio.channels.ReadableByteChannel;
34 import java.nio.channels.ServerSocketChannel;
35 import java.nio.channels.SocketChannel;
36 import java.nio.channels.WritableByteChannel;
108 * Returns a pair of connected sockets backed by NIO socket channels.
  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/spi/
SelectorProviderTest.java 17 package org.apache.harmony.nio.tests.java.nio.channels.spi;
19 import java.nio.channels.spi.SelectorProvider;
  /system/bt/embdrv/sbc/encoder/include/
sbc_if.h 28 channels - 1 mono 2 stereo
33 int SBC_init(int pcm_sample_freq, int channels, int bits_per_sample);
  /system/media/audio_effects/include/audio_effects/
effect_downmix.h 40 // throw away the extra channels
42 // mix the extra channels with FL/FR
  /system/media/audio_utils/tests/
fifo_tests.cpp 77 size_t frameSize = sizeof(short) * sfinfoin.channels;
78 short *inputBuffer = new short[sfinfoin.frames * sfinfoin.channels];
87 short *outputBuffer = new short[sfinfoin.frames * sfinfoin.channels];
91 short *fifoBuffer = new short[frameCount * sfinfoin.channels];
107 &inputBuffer[framesWritten * sfinfoin.channels], framesToWrite);
128 &outputBuffer[framesRead * sfinfoin.channels], framesToRead);
152 sfinfoout.channels = sfinfoin.channels;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
SinkChannelTest.java 17 package org.apache.harmony.tests.java.nio.channels;
23 import java.nio.channels.ClosedChannelException;
24 import java.nio.channels.Pipe;
25 import java.nio.channels.SelectionKey;
26 import java.nio.channels.ServerSocketChannel;
27 import java.nio.channels.SocketChannel;
61 * @tests java.nio.channels.Pipe.SinkChannel#validOps()
68 * @tests java.nio.channels.Pipe.SinkChannel#write(ByteBuffer)
103 * @tests java.nio.channels.Pipe.SinkChannel#write(ByteBuffer)
147 * @tests java.nio.channels.Pipe.SinkChannel#write(ByteBuffer
    [all...]
  /libcore/luni/src/main/java/java/nio/
SelectorImpl.java 23 import java.nio.channels.ClosedSelectorException;
24 import java.nio.channels.IllegalSelectorException;
25 import java.nio.channels.SelectionKey;
26 import java.nio.channels.Selector;
27 import java.nio.channels.spi.AbstractSelectableChannel;
28 import java.nio.channels.spi.AbstractSelectionKey;
29 import java.nio.channels.spi.AbstractSelector;
30 import java.nio.channels.spi.SelectorProvider;
45 import static java.nio.channels.SelectionKey.OP_ACCEPT;
46 import static java.nio.channels.SelectionKey.OP_CONNECT
    [all...]

Completed in 1193 milliseconds

1 2 3 45 6 7 8 91011>>