HomeSort by relevance Sort by last modified time
    Searched refs:channels (Results 126 - 150 of 1456) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/tensorflow/tensorflow/core/kernels/fuzzing/
encode_jpeg_fuzz.cc 28 // Pick random channels and aspect ratio, and then set the
30 int64 channels = (data[0] % 2) * 2 + 1; // 1, 3
39 int64 pixels = remaining_bytes / channels;
44 size_t actual_pixels = height * width * channels;
50 TensorShape({height, width, channels}));
  /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/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);
  /frameworks/av/include/media/
MmapStreamCallback.h 40 * \param[in] channels a channel mask containing all channels the volume should be applied to.
45 virtual void onVolumeChanged(audio_channel_mask_t channels, Vector<float> values) = 0;
  /libcore/ojluni/src/main/java/java/nio/channels/
GatheringByteChannel.java 26 package java.nio.channels;
79 * writing all of the <i>r</i> requested bytes. Some types of channels,
ScatteringByteChannel.java 26 package java.nio.channels;
  /libcore/ojluni/src/main/java/sun/nio/ch/
DefaultSelectorProvider.java 28 import java.nio.channels.spi.SelectorProvider;
69 can never successfully deregister keys from closed channels.
  /packages/apps/TV/partner_support/src/com/google/android/tv/partner/support/
Lineup.java 55 public static Lineup createLineup(String id, int type, String name, List<String> channels) {
57 id, type, name, Collections.unmodifiableList(new ArrayList<>(channels)));
64 String channels = contentValues.getAsString(EpgContract.Lineups.COLUMN_CHANNELS); local
65 List<String> channelList = EpgContract.toChannelList(channels);
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/jdk/jdk8/darwin-x86/sample/nio/server/
N1.java 41 import java.nio.channels.*;
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
N1.java 41 import java.nio.channels.*;
  /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/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/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AppleLosslessSpecificBox.java 19 8bit channels? 16bit ?? 32bit max coded frame size 32bit
28 private int channels; // 8bit field in class:AppleLosslessSpecificBox
83 return channels;
86 public void setChannels(int channels) {
87 this.channels = channels;
132 channels = IsoTypeReader.readUInt8(content);
148 IsoTypeWriter.writeUInt8(byteBuffer, channels);
  /external/webrtc/webrtc/modules/audio_processing/
splitting_filter_unittest.cc 51 memset(in_data.fbuf()->channels()[0],
53 kSamplesPer48kHzChannel * sizeof(in_data.fbuf()->channels()[0][0]));
58 in_data.fbuf()->channels()[0][k] +=
70 energy[j] += bands.fbuf_const()->channels(j)[0][k] *
71 bands.fbuf_const()->channels(j)[0][k];
87 tmpcorr += in_data.fbuf_const()->channels()[0][j - delay] *
88 out_data.fbuf_const()->channels()[0][j];
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/spi/
AbstractSelectorTest.java 17 package org.apache.harmony.tests.java.nio.channels.spi;
20 import java.nio.channels.ClosedSelectorException;
21 import java.nio.channels.IllegalBlockingModeException;
22 import java.nio.channels.SelectionKey;
23 import java.nio.channels.Selector;
24 import java.nio.channels.ServerSocketChannel;
25 import java.nio.channels.spi.SelectorProvider;
  /libcore/luni/src/test/java/libcore/java/nio/channels/
OldServerSocketChannelTest.java 18 package libcore.java.nio.channels;
23 import java.nio.channels.ClosedByInterruptException;
24 import java.nio.channels.ServerSocketChannel;
25 import java.nio.channels.SocketChannel;
26 import java.nio.channels.spi.SelectorProvider;
  /external/autotest/client/cros/audio/
sox_utils.py 13 def _raw_format_args(channels, bits, rate):
16 @param channels: Number of channels.
24 args += _format_args(channels, bits, rate)
28 def _format_args(channels, bits, rate):
31 @param channels: Number of channels.
38 return ['-c', str(channels), '-b', str(bits), '-r', str(rate)]
42 filename, channels=2, bits=16, rate=48000, duration=None, frequencies=440,
47 @param channels: The number of channels
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
pooling_ops_3d_gpu.cu.cc 33 const int channels, const int plane, const int height, const int width,
43 int c = (index / pooled_width / pooled_height / pooled_plane) % channels;
44 int n = (index / pooled_width / pooled_height / pooled_plane / channels);
57 bottom_data + n * channels * plane * height * width;
74 top_diff[n * channels * plane * height * width + maxidx];
83 const int channels, const int plane, const int height, const int width,
91 int c = n % channels;
92 n /= channels;
108 bottom_data + n * plane * height * width * channels;
113 int idx = ((p * height + h) * width + w) * channels + c
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/test/
opus_test.cc 161 opus_codec_param.channels = 1;
208 void OpusTest::Run(TestPackStereo* channel, size_t channels, int bitrate,
247 if (channels == 1) {
264 channels,
267 written_samples += 480 * channels;
272 (channels * frame_length);
280 (channels == 1) ? opus_mono_encoder_ : opus_stereo_encoder_,
301 if (channels == 1) {
305 &out_audio[decoded_samples * channels], &audio_type);
308 opus_mono_decoder_, &out_audio[decoded_samples * channels], 1)
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/opus/
opus_interface.c 45 size_t channels,
66 state->zero_counts = calloc(channels, sizeof(size_t));
70 state->encoder = opus_encoder_create(48000, (int)channels, opus_app,
78 state->channels = channels;
110 const size_t channels = inst->channels; local
117 for (c = 0; c < channels; ++c) {
118 if (audio_in[i * channels + c] == 0) {
122 memcpy(buffer, audio_in, samples * channels * sizeof(int16_t))
451 int frames, channels, payload_length_ms; local
    [all...]
  /external/mesa3d/src/mesa/main/
format_parser.py 53 self.name = None # Set when the channels are added to the format
54 self.shift = -1 # Set when the channels are added to the format
55 self.index = -1 # Set when the channels are added to the format
107 A Swizzle is a mapping from one set of channels in one format to the
108 channels in another. Each channel in the destination format is
120 case, the source channels are represented by the characters "x", "y",
124 channels maps to the first luminance-alpha channel and the alpha channel
209 a permutation with no channels added or removed, then this
230 def __init__(self, name, layout, block_width, block_height, block_depth, channels, swizzle, colorspace):
231 """Constructs a Format from some metadata and a list of channels
    [all...]
  /frameworks/av/media/libaudioprocessing/tests/
test-resampler.cpp 39 fprintf(stderr,"Usage: %s [-p] [-f] [-F] [-v] [-c channels]"
48 fprintf(stderr," -c # channels (1-2 for lq|mq|hq; 1-8 for dlq|dmq|dhq)\n");
109 int channels = 1; local
132 channels = atoi(optarg);
181 if (channels < 1
182 || channels > (quality < AudioResampler::DYN_LOW_QUALITY ? 2 : 8)) {
183 fprintf(stderr, "invalid number of audio channels %d\n", channels);
218 input_size = info.frames * info.channels * sizeof(short);
222 channels = info.channels
253 reinterpret_cast<int16_t*>(input_vaddr), input_frames * channels); local
    [all...]

Completed in 1581 milliseconds

1 2 3 4 56 7 8 91011>>