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

<<11121314151617181920>>

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libmkv/
WebMElement.c 81 double samplingFrequency, unsigned int channels,
102 Ebml_SerializeUnsigned(glob, Channels, channels);
195 Ebml_SerializeUnsigned(ebml_out, 0x9F, video.Channels);
  /hardware/ti/omap3/omx/ti_omx_config_parser/inc/
ti_omx_config_parser.h 42 OMX_U16 Channels;
  /libcore/dalvik/src/main/java/dalvik/system/
DalvikLogHandler.java 39 * through the conventional channels instead.
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Pyramid.h 36 real numChannels; // Number of channels in input images
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Pyramid.h 36 real numChannels; // Number of channels in input images
  /packages/providers/DownloadProvider/tests/public_api_access/
AndroidManifest.xml 35 android:label="Tests for public API access channels to DownloadProvider"/>
  /system/bt/embdrv/sbc/decoder/srce/
framing-sbc.c 47 printf(" channels: %d\n", frameInfo->nrof_channels);
  /system/media/audio_utils/include/audio_utils/
sndfile.h 37 int channels; member in struct:__anon70152
  /external/kernel-headers/original/uapi/linux/caif/
caif_socket.h 23 * setting up CAIF Channels when multiple CAIF Link Layers exists.
39 * Priority can be set on CAIF Channels in order to
40 * prioritize between traffic on different CAIF Channels.
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_pack.py 54 for channel in format.channels:
59 for channel in format.channels:
121 channel = format.channels[i]
131 channel = format.channels[i]
142 channel = format.channels[i]
164 channel = format.channels[0]
420 src_channel = format.channels[i]
434 src_channel = format.channels[i]
464 src_channel = format.channels[swizzle]
492 src_channel = format.channels[swizzle
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
IsoFile.java 26 import java.nio.channels.FileChannel;
27 import java.nio.channels.ReadableByteChannel;
28 import java.nio.channels.WritableByteChannel;
  /external/skia/src/gpu/gl/
GrGLProgramDesc.cpp 17 * Do we need to either map r,g,b->a or a->r. configComponentMask indicates which channels are
18 * present in the texture's config. swizzleComponentMask indicates the channels present in the
36 // alpha-only textures smear alpha across all four channels when read.
  /frameworks/av/media/libeffects/testlibs/
AudioFormatAdapter.h 54 // nChannels Number of input and output channels. The adapter does not do
109 // The number of input/output channels.
117 // The buffer size, divided by the number of channels - represents the
  /frameworks/base/core/java/android/hardware/camera2/params/
RggbChannelVector.java 26 * The number of color channels in this vector.
197 * {@code %f} respectively represents one of the the four color channels. </p>
210 * respectively represents one of the the four color channels. </p>
  /frameworks/base/docs/html/distribute/analyze/
improve-roi.jd 2 page.metaDescription=Combine the power of Analytics with other data sources to understand the performance of each of your marketing channels.
9 possible and there are many ways of doing that. Whatever channels you use,
28 ROI analysis for each of your marketing channels. You can tailor
  /frameworks/base/docs/html/sdk/api_diff/19/changes/
java.nio.channels.Selector.html 10 java.nio.channels.Selector
74 Class java.nio.channels.<A HREF="../../../../reference/java/nio/channels/Selector.html" target="_top"><font size="+2"><code>Selector</code></font></A>
  /frameworks/base/media/java/android/media/
EncoderCapabilities.java 76 * <li>Number of channels: the number of channels the audio is recorded.
83 public final int mMinChannels, mMaxChannels; // min and max number of channels
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
ColorSpace.java 51 * The input data is expected to be encoded in 8-bit interleaved ARGB channels. The output
70 * The input data is expected to be encoded in 8-bit interleaved RGBA channels. The output
89 * The input data is expected to be encoded in 8-bit interleaved RGBA channels. The output
  /frameworks/opt/net/voip/src/java/android/net/rtp/
AudioCodec.java 117 String channels = clue.substring(codec.rtpmap.length()); local
118 if (channels.length() == 0 || channels.equals("/1")) {
  /hardware/intel/audio_media/hdmi/
tinyaudio_hw.c 106 .channels = 2,
139 uint32_t channels; member in struct:stream_out
239 out->pcm_config.channels,
270 activeChannel = out->pcm_config.channels;
272 ALOGV("Initialized PCM device for channels %d handle = %d",out->pcm_config.channels, (int)activePcm);
458 ALOGD("[EDID]valid number of channels supported by sink = %d",chcount);
489 ALOGV("%s sink supports 0x%x max channels", __func__,adev->sink_sup_channels);
572 ALOGV("%s enter for bytes = %d channels = %d",__func__,bytes, out->pcm_config.channels);
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/mpu_iio/
mpu_iio.c 90 * @channels: the channel info array
93 * Has the side effect of filling the channels[i].location values used
96 int size_from_channelarray(struct iio_channel_info *channels, int num_channels)
101 if (bytes % channels[i].bytes == 0)
102 channels[i].location = bytes;
104 channels[i].location = bytes - bytes%channels[i].bytes
105 + channels[i].bytes;
106 bytes = channels[i].location + channels[i].bytes
    [all...]
  /libcore/luni/src/main/java/java/nio/
MappedByteBuffer.java 20 import java.nio.channels.FileChannel.MapMode;
30 * {@link java.nio.channels.FileChannel#map(java.nio.channels.FileChannel.MapMode, long, long) FileChannel.map}.
  /libcore/luni/src/main/java/java/nio/channels/
DatagramChannel.java 18 package java.nio.channels;
26 import java.nio.channels.spi.AbstractSelectableChannel;
27 import java.nio.channels.spi.SelectorProvider;
42 * Datagram channels are thread-safe; only one thread can read or write at the
73 * Gets the valid operations of this channel. Datagram channels support read
77 * @see java.nio.channels.SelectableChannel#validOps()
231 * @see java.nio.channels.ReadableByteChannel#read(java.nio.ByteBuffer)
262 * @see java.nio.channels.ScatteringByteChannel#read(java.nio.ByteBuffer[],
303 * @see java.nio.channels.ScatteringByteChannel#read(java.nio.ByteBuffer[])
335 * @see java.nio.channels.WritableByteChannel#write(java.nio.ByteBuffer
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/
pcm_ioplug.h 45 SND_PCM_IOPLUG_HW_CHANNELS, /**< channels */
113 unsigned int channels; /**< number of channels; filled after hw_params is called */ member in struct:snd_pcm_ioplug
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
pcm_ioplug.h 45 SND_PCM_IOPLUG_HW_CHANNELS, /**< channels */
113 unsigned int channels; /**< number of channels; filled after hw_params is called */ member in struct:snd_pcm_ioplug

Completed in 861 milliseconds

<<11121314151617181920>>