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

1 2 3 4 5 67 8 91011>>

  /external/libopus/src/
opus_encoder.c 66 int channels; member in struct:OpusEncoder
148 int opus_encoder_get_size(int channels)
152 if (channels<1 || channels > 2)
158 celtEncSizeBytes = celt_encoder_get_size(channels);
162 int opus_encoder_init(OpusEncoder* st, opus_int32 Fs, int channels, int application)
169 if((Fs!=48000&&Fs!=24000&&Fs!=16000&&Fs!=12000&&Fs!=8000)||(channels!=1&&channels!=2)||
174 OPUS_CLEAR((char*)st, opus_encoder_get_size(channels));
185 st->stream_channels = st->channels = channels
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
AnimControl.java 53 * 2) Multiple animation channels
81 * Animation channels
83 private transient ArrayList<AnimChannel> channels = new ArrayList<AnimChannel>(); field in class:AnimControl
114 clone.channels = new ArrayList<AnimChannel>();
185 channels.add(channel);
198 return channels.get(index);
202 * @return The number of channels that are controlled by this
208 return channels.size();
212 * Clears all the channels that were created.
217 channels.clear();
    [all...]
  /external/libopus/tests/
test_opus_padding.c 39 #define CHANNELS 2
49 opus_int16 *out = malloc(FRAMESIZE*CHANNELS*sizeof(*out));
61 decoder = opus_decoder_create(48000, CHANNELS, &error);
  /external/libvorbis/doc/vorbisenc/
vorbis_encode_init_vbr.html 29 long channels,
43 <dt><i>channels</i></dt>
44 <dd>The number of channels to be encoded.</dd>
  /external/libvorbis/doc/vorbisfile/
vorbis_info.html 29 int channels;
48 <dt><i>channels</i></dt>
49 <dd>Int signifying number of channels in bitstream.</dd>
ov_crosslap.html 37 channels. Any extra channels from the old stream are ignored; playback
38 of these channels simply ends. Extra channels in the new stream are
ov_pcm_seek_lap.html 32 numbers of channels. Any extra channels from the origin of the seek
33 are ignored; playback of these channels simply ends. Extra channels at
ov_pcm_seek_page_lap.html 40 differing numbers of channels. Any extra channels from the origin of
41 the seek are ignored; playback of these channels simply ends. Extra
42 channels at the destination are lapped from silence.
ov_raw_seek_lap.html 36 numbers of channels. Any extra channels from the origin of the seek
37 are ignored; playback of these channels simply ends. Extra channels at
ov_time_seek_lap.html 33 numbers of channels. Any extra channels from the origin of the seek
34 are ignored; playback of these channels simply ends. Extra channels at
ov_time_seek_page_lap.html 40 differing numbers of channels. Any extra channels from the origin of
41 the seek are ignored; playback of these channels simply ends. Extra
42 channels at the destination are lapped from silence.
  /frameworks/av/include/media/stagefright/
AudioSource.h 34 // Note that the "channels" parameter _is_ the number of channels,
40 uint32_t channels,
  /frameworks/base/services/core/java/com/android/server/wm/
InputConsumerImpl.java 43 InputChannel[] channels = InputChannel.openInputChannelPair(name); local
44 mServerChannel = channels[0];
45 mClientChannel = channels[1];
  /hardware/qcom/audio/legacy/alsa_sound/
ALSAStreamOps.cpp 95 uint32_t *channels,
100 if (channels && *channels != 0) {
101 if (mHandle->channels != popCount(*channels))
103 } else if (channels) {
105 switch(*channels) {
113 *channels = AUDIO_CHANNEL_OUT_STEREO;
117 switch(*channels) {
128 *channels = AUDIO_CHANNEL_IN_MONO
343 uint32_t ALSAStreamOps::channels() const function in class:android_audio_legacy::ALSAStreamOps
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/spi/
AbstractInterruptibleChannelTest.java 17 package org.apache.harmony.tests.java.nio.channels.spi;
20 import java.nio.channels.AsynchronousCloseException;
21 import java.nio.channels.spi.AbstractInterruptibleChannel;
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastConfigService.java 43 * Note that the entire range of emergency channels is enabled. Test messages
47 * TODO: add notification to re-enable channels after a radio reset.
224 if (DBG) log("enabling emergency cell broadcast channels");
228 // No emergency channel system property, enable all emergency channels
283 if (DBG) log("enabled emergency cell broadcast channels");
285 // we may have enabled these channels previously, so try to disable them
286 if (DBG) log("disabling emergency cell broadcast channels");
290 // No emergency channel system property, disable all emergency channels
334 if (DBG) log("disabled emergency cell broadcast channels");
346 if (DBG) log("enabling channels 919-928 for Israel")
    [all...]
  /external/deqp/framework/delibs/deutil/
deSocket.c 593 deBool deSocket_shutdown (deSocket* sock, deUint32 channels)
606 DE_ASSERT(channels != 0 && (channels & ~DE_SOCKETCHANNEL_BOTH) == 0);
608 /* Don't attempt to close already closed channels on partially open socket. */
609 channels &= sock->openChannels;
611 if (channels == 0)
621 if ((channels & DE_SOCKETCHANNEL_BOTH) == DE_SOCKETCHANNEL_BOTH)
623 else if (channels & DE_SOCKETCHANNEL_SEND)
625 else if (channels & DE_SOCKETCHANNEL_RECEIVE)
629 closedChannels = channels;
    [all...]
  /external/libopus/silk/
control.h 47 /* I: Number of channels; 1/2 */
50 /* I: Number of channels; 1/2 */
119 /* I: Number of channels; 1/2 */
122 /* I: Number of channels; 1/2 */
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
AudioQuality.java 24 int channels; field in class:AudioQuality
  /frameworks/av/services/audioflinger/
AudioResamplerDyn.cpp 82 void AudioResamplerDyn<TC, TI, TO>::InBuffer::resize(int CHANNELS, int halfNumCoefs)
85 size_t stateCount = halfNumCoefs * CHANNELS * 2 * kStateSizeMultipleOfFilterLength;
90 && mRingFull-mState == (ssize_t) (mStateCount-halfNumCoefs*CHANNELS)) {
101 TI* srcLo = mImpulse - halfNumCoefs*CHANNELS;
102 TI* srcHi = mImpulse + halfNumCoefs*CHANNELS;
119 mImpulse = state + halfNumCoefs*CHANNELS; // actually one sample greater than needed
120 mRingFull = state + mStateCount - halfNumCoefs*CHANNELS;
125 template<int CHANNELS>
129 TI* head = impulse + halfNumCoefs*CHANNELS;
130 for (size_t i=0 ; i<CHANNELS ; i++)
    [all...]
AudioResamplerSinc.h 49 template<int CHANNELS>
53 template<int CHANNELS>
57 template<int CHANNELS>
63 template<int CHANNELS>
  /hardware/libhardware_legacy/audio/
AudioHardwareStub.h 35 virtual uint32_t channels() const { return AudioSystem::CHANNEL_OUT_STEREO; } function in class:android_audio_legacy::AudioStreamOutStub
52 virtual uint32_t channels() const { return AudioSystem::CHANNEL_IN_MONO; } function in class:android_audio_legacy::AudioStreamInStub
82 uint32_t *channels=0,
90 uint32_t *channels,
  /libcore/luni/src/main/java/java/nio/
PipeImpl.java 23 import java.nio.channels.Pipe;
24 import java.nio.channels.SocketChannel;
25 import java.nio.channels.spi.SelectorProvider;
31 * Implements {@link java.nio.channels.Pipe}.
  /external/libopus/include/
opus.h 61 * @li Support for multichannel (up to 255 channels)
86 * enc = opus_encoder_create(Fs, channels, application, &error);
100 * size = opus_encoder_get_size(channels);
102 * error = opus_encoder_init(enc, Fs, channels, application);
167 * @param[in] channels <tt>int</tt>: Number of channels.
171 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_encoder_get_size(int channels);
200 * @param [in] channels <tt>int</tt>: Number of channels (1 or 2) in input signal
203 * @note Regardless of the sampling rate and number channels selected, the Opus encode
    [all...]
  /external/libpng/contrib/pngminus/
png2pnm.c 202 int channels; local
277 * get rowbytes and channels, and allocate image memory */
294 /* calculate new number of channels and store alpha-presence */
296 channels = 1;
298 channels = 2;
300 channels = 3;
302 channels = 4;
304 channels = 0; /* should never happen */
305 alpha_present = (channels - 1) % 2;
315 /* row_bytes is the width x number of channels x (bit-depth / 8) *
    [all...]

Completed in 1292 milliseconds

1 2 3 4 5 67 8 91011>>