HomeSort by relevance Sort by last modified time
    Searched refs:streams (Results 1 - 25 of 548) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/opencv/cv/include/
cvstreams.h 46 #include <streams.h> /* !!! IF YOU'VE GOT AN ERROR HERE, PLEASE READ BELOW !!! */
47 /***************** How to get Visual Studio understand streams.h ****************\
  /external/libbrillo/brillo/streams/
stream_errors.cc 5 #include <brillo/streams/stream_errors.h>
  /hardware/libhardware/modules/camera/3_4/
static_properties_test.cpp 103 void ExpectConfigurationSupported(std::vector<camera3_stream_t>& streams,
106 for (size_t i = 0; i < streams.size(); ++i) {
107 stream_addresses.push_back(&streams[i]);
382 std::vector<camera3_stream_t> streams; local
383 streams.push_back(MakeStream(output_multisize_non_stalling_));
384 ExpectConfigurationSupported(streams, true);
388 std::vector<camera3_stream_t> streams; local
390 streams.push_back(MakeStream(bidirectional_raw_));
392 streams.push_back(MakeStream(output_multisize_non_stalling_,
397 ExpectConfigurationSupported(streams, true)
401 std::vector<camera3_stream_t> streams; local
414 std::vector<camera3_stream_t> streams; local
422 std::vector<camera3_stream_t> streams; local
460 std::vector<camera3_stream_t> streams; local
467 std::vector<camera3_stream_t> streams; local
474 std::vector<camera3_stream_t> streams; local
481 std::vector<camera3_stream_t> streams; local
489 std::vector<camera3_stream_t> streams; local
497 std::vector<camera3_stream_t> streams; local
504 std::vector<camera3_stream_t> streams; local
527 std::vector<camera3_stream_t> streams; local
546 std::vector<camera3_stream_t> streams; local
565 std::vector<camera3_stream_t> streams; local
584 std::vector<camera3_stream_t> streams; local
592 std::vector<camera3_stream_t> streams; local
604 std::vector<camera3_stream_t> streams; local
    [all...]
  /hardware/interfaces/camera/device/3.3/default/
CameraDeviceSession.cpp 81 hidl_vec<camera3_stream_t*> streams; local
84 stream_list.num_streams = requestedConfiguration.streams.size();
85 streams.resize(stream_list.num_streams);
86 stream_list.streams = streams.data();
89 int id = requestedConfiguration.streams[i].id;
93 V3_2::implementation::convertFromHidl(requestedConfiguration.streams[i], &stream);
101 (int) requestedConfiguration.streams[i].streamType ||
102 mStreamMap[id].width != requestedConfiguration.streams[i].width ||
103 mStreamMap[id].height != requestedConfiguration.streams[i].height |
    [all...]
convert.cpp 53 dst->streams.resize(src.num_streams);
55 convertToHidl(static_cast<Camera3Stream*>(src.streams[i]), &dst->streams[i]);
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
__init__.py 27 @section streams Streams
29 Each recognizer pulls its input from one of the stream classes below. Streams
151 from streams import *
  /external/pdfium/xfa/fxfa/app/
xfa_ffapp_unittest.cpp 17 std::vector<CPDF_Stream*> streams; local
19 MakeSeekableReadStream(streams);
28 std::vector<CPDF_Stream*> streams; local
30 streams.push_back(stream1.get());
32 MakeSeekableReadStream(streams);
41 std::vector<CPDF_Stream*> streams; local
54 streams.push_back(stream1.get());
55 streams.push_back(stream2.get());
56 streams.push_back(stream3.get());
58 MakeSeekableReadStream(streams);
    [all...]
  /external/webrtc/webrtc/call/
call_unittest.cc 68 std::list<AudioSendStream*> streams; local
75 streams.push_back(stream);
77 streams.push_front(stream);
80 for (auto s : streams) {
83 streams.clear();
91 std::list<AudioReceiveStream*> streams; local
98 streams.push_back(stream);
100 streams.push_front(stream);
103 for (auto s : streams) {
106 streams.clear()
    [all...]
  /external/webrtc/webrtc/voice_engine/test/auto_test/standard/
mixing_test.cc 46 // amplitude of |input_value|. The local streams manifest as "anonymous"
53 // |num_remote_streams_using_mono| of the remote streams use mono, with the
78 TEST_LOG("Playing %d local streams.\n", num_local_streams);
87 TEST_LOG("Playing %d remote streams.\n", num_remote_streams);
144 // Start up local streams ("anonymous" participants).
145 void StartLocalStreams(const std::vector<int>& streams) {
146 for (size_t i = 0; i < streams.size(); ++i) {
147 EXPECT_EQ(0, voe_base_->StartPlayout(streams[i]));
148 EXPECT_EQ(0, voe_file_->StartPlayingFileLocally(streams[i],
153 void StopLocalStreams(const std::vector<int>& streams) {
    [all...]
  /external/libopus/include/
opus_multistream.h 79 * the <code>streams</code> parameter used
92 * the <code>streams</code> parameter used
106 * The multistream API allows individual Opus streams to be combined into a
119 * <code>streams</code> to <code>1</code> when initializing the encoder or
122 * Multistream Opus streams can contain up to 255 elementary Opus streams.
125 * The streams are ordered so that all coupled streams appear at the
139 * be the special value 255 or be less than <code>streams + coupled_streams</code>.
189 * @param streams <tt>int</tt>: The total number of streams to encode from th
    [all...]
  /external/vogar/test/vogar/testing/
InterceptOutputStreams.java 37 * The streams that can be intercepted.
69 * The streams to intercept.
71 private final EnumSet<Stream> streams; field in class:InterceptOutputStreams
75 * The streams to intercept.
77 public InterceptOutputStreams(Stream... streams) {
78 this.streams = EnumSet.of(streams[0], streams);
91 if (!streams.contains(stream)) {
92 EnumSet<Stream> extra = streams.clone()
    [all...]
  /hardware/interfaces/camera/device/3.3/
types.hal 56 vec<HalStream> streams;
  /external/webrtc/talk/media/webrtc/
simulcast.cc 70 // possible number of simulcast streams |kMaxSimulcastStreams|. The array
178 int GetTotalMaxBitrateBps(const std::vector<webrtc::VideoStream>& streams) {
180 for (size_t s = 0; s < streams.size() - 1; ++s) {
181 total_max_bitrate_bps += streams[s].target_bitrate_bps;
183 total_max_bitrate_bps += streams.back().max_bitrate_bps;
197 // number of simulcast streams for current resolution, switch down
204 std::vector<webrtc::VideoStream> streams; local
205 streams.resize(simulcast_layers);
211 // Add simulcast sub-streams from lower resolution to higher resolutions.
212 // Add simulcast streams, from highest resolution (|s| = number_streams -1
    [all...]
simulcast.h 59 int GetTotalMaxBitrateBps(const std::vector<webrtc::VideoStream>& streams);
  /external/webrtc/talk/media/base/
streamparams.h 34 // E.x: Consider a source that is sent as 3 simulcast streams
155 // For 1:1 calls, should be left empty (which means remote streams
156 // and local streams should not be mixed together).
204 // A collection of audio and video and data streams. Most of the
270 // A request for several streams in various formats.
276 const StreamParams* GetStream(const StreamParamsVec& streams,
279 std::find_if(streams.begin(), streams.end(), condition);
280 return found == streams.end() ? nullptr : &(*found);
283 inline const StreamParams* GetStreamBySsrc(const StreamParamsVec& streams,
    [all...]
  /external/webrtc/webrtc/video/
video_send_stream.cc 301 const std::vector<VideoStream>& streams = config.streams; local
302 RTC_DCHECK(!streams.empty());
303 RTC_DCHECK_GE(config_.rtp.ssrcs.size(), streams.size());
323 if (config.streams.size() == 1 &&
324 config.streams[0].temporal_layer_thresholds_bps.size() == 1) {
326 config.streams[0].temporal_layer_thresholds_bps[0] / 1000;
346 streams.back().temporal_layer_thresholds_bps.size() + 1);
360 streams.back().temporal_layer_thresholds_bps.size() + 1);
378 static_cast<unsigned char>(streams.size())
    [all...]
  /art/test/151-OpenFileLimit/src/
Main.java 30 List<OutputStream> streams = new ArrayList<OutputStream>(); local
35 streams.add(Files.newOutputStream(file.toPath(), CREATE, APPEND));
59 streams.get(i).close();
  /external/libbrillo/brillo/http/
http_form_data.cc 16 #include <brillo/streams/file_stream.h>
17 #include <brillo/streams/input_stream_set.h>
18 #include <brillo/streams/memory_stream.h>
86 bool TextFormField::ExtractDataStreams(std::vector<StreamPtr>* streams) {
87 streams->push_back(MemoryStream::OpenCopyOf(data_, nullptr));
108 bool FileFormField::ExtractDataStreams(std::vector<StreamPtr>* streams) {
111 streams->push_back(std::move(stream_));
127 bool MultiPartFormField::ExtractDataStreams(std::vector<StreamPtr>* streams) {
130 streams->push_back(MemoryStream::OpenCopyOf(data, nullptr));
131 if (!part->ExtractDataStreams(streams))
    [all...]
  /hardware/libhardware/modules/usbcamera/
Camera.h 95 // Destroy all streams in a stream array, and the array itself. Must be called with
97 void destroyStreamsLocked(android::Vector<Stream *> &streams);
98 // Verify a set of streams is valid in aggregate. Must be called with mDeviceLock held.
99 bool isValidStreamSetLocked(const android::Vector<Stream *> &streams);
101 void setupStreamsLocked(android::Vector<Stream *> &streams);
121 // Array of handles to streams currently in use by the device
Camera.cpp 222 ALOGV("%s:%d: Number of Streams: %d", __func__, mId,
224 // Mark all current streams unused for now
228 // Fill new stream array with reused streams and new streams
230 astream = stream_config->streams[i];
246 // Verify the set of streams in aggregate
252 // Set up all streams (calculate usage/max_buffers for each)
255 // Destroy all old streams and replace stream array with new one
264 // Clean up temporary streams, preserve existing mStreams
269 void Camera::destroyStreamsLocked(android::Vector<Stream *> &streams) {
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SequenceInputStreamTest.java 69 InputStream streams[] = new InputStream[2]; field in class:SequenceInputStreamTest.StreamEnumerator
74 streams[0] = new ByteArrayInputStream(s1.getBytes("UTF-8"));
75 streams[1] = new ByteArrayInputStream(s2.getBytes("UTF-8"));
79 return count < streams.length;
83 return streams[count++];
  /external/autotest/client/tests/parallel_dd/
parallel_dd.py 9 def initialize(self, fs, fstype = 'ext2', megabytes = 1000, streams = 2,
13 self.blocks_per_file = self.blocks / streams
16 self.streams = streams
25 logging.info('Dumping %d megabytes across %d streams', megabytes,
26 streams)
47 # Write out 'streams' files in parallel background tasks
48 for i in range(self.streams):
53 logging.info("Waiting for %d streams", self.streams)
    [all...]
  /hardware/libhardware/modules/camera/3_0/
Camera.cpp 164 ALOGV("%s:%d: Number of Streams: %d", __func__, mId,
167 // Mark all current streams unused for now
170 // Fill new stream array with reused streams and new streams
172 astream = stream_config->streams[i];
188 // Verify the set of streams in aggregate
194 // Set up all streams (calculate usage/max_buffers for each)
197 // Destroy all old streams and replace stream array with new one
207 // Clean up temporary streams, preserve existing mStreams/mNumStreams
212 void Camera::destroyStreams(Stream **streams, int count
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_smf.c 301 /* parse the next event from all the streams */
333 /* find next event in all streams */
338 if (pSMFData->streams[i].ticks < temp)
340 temp = pSMFData->streams[i].ticks;
341 pSMFData->nextStream = &pSMFData->streams[i];
431 /* close all the streams */
434 if (pSMFData->streams[i].fileHandle != NULL)
436 if ((result = EAS_HWCloseFile(pEASData->hwInstData, pSMFData->streams[i].fileHandle)) != EAS_SUCCESS)
451 if (pSMFData->streams)
452 EAS_HWFree(pEASData->hwInstData, pSMFData->streams);
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
SeekableXZInputStream.java 27 * Each .xz file consist of one or more Streams. Each Stream consist of zero
28 * or more Blocks. Each Stream contains an Index of Streams' Blocks.
29 * The Indexes from all Streams are loaded in RAM by a constructor of this
44 * and should be fine as long as there aren't too many Streams. The correct
53 * to the next kibibyte. So unless the file has a huge number of Streams or
100 private final ArrayList streams = new ArrayList(); field in class:SeekableXZInputStream
108 * Uncompressed size of the file (all Streams).
187 * XZ Streams; the whole input stream is used
217 * XZ Streams; the whole input stream is used
271 * XZ Streams; the whole input stream is use
    [all...]

Completed in 911 milliseconds

1 2 3 4 5 6 7 8 91011>>