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

1 23 4 5 6 7 8 91011>>

  /external/libbrillo/brillo/streams/
memory_containers.cc 5 #include <brillo/streams/memory_containers.h>
8 #include <brillo/streams/stream_errors.h>
mock_stream.h 10 #include <brillo/streams/stream.h>
memory_stream.h 14 #include <brillo/streams/memory_containers.h>
15 #include <brillo/streams/stream.h>
25 // to construct a read-only and writable streams respectively.
36 // a read-only streams on transient data or for cases where
175 // == Finalizing/closing streams ===========================================
openssl_stream_bio_unittests.cc 5 #include <brillo/streams/openssl_stream_bio.h>
10 #include <brillo/streams/mock_stream.h>
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
simulcast_encoder_adapter.cc 29 uint32_t SumStreamTargetBitrate(int streams, const webrtc::VideoCodec& codec) {
31 for (int i = 0; i < streams; ++i) {
37 uint32_t SumStreamMaxBitrate(int streams, const webrtc::VideoCodec& codec) {
39 for (int i = 0; i < streams; ++i) {
46 int streams = local
48 uint32_t simulcast_max_bitrate = SumStreamMaxBitrate(streams, codec);
50 streams = 1;
52 return streams;
242 // All active streams should generate a key frame if
402 // rates of all lower streams
    [all...]
  /external/libopus/src/
opus_multistream_encoder.c 431 int streams,
443 if ((channels>255) || (channels<1) || (coupled_streams>streams) ||
444 (streams<1) || (coupled_streams<0) || (streams>255-coupled_streams))
449 st->layout.nb_streams = streams;
494 int streams,
500 return opus_multistream_encoder_init_impl(st, Fs, channels, streams,
510 int *streams,
525 *streams=1;
530 *streams=1
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3lexer.c 345 // there might be more input streams to POP before the
357 if (lexer->rec->state->streams != NULL && lexer->rec->state->streams->size(lexer->rec->state->streams) > 0)
368 // There were no more streams on the input stack
424 /** Default lexer error handler (works for 8 bit streams only!!!)
554 * Pointer to the lexer instance to switch input streams for.
568 if (lexer->rec->state->streams == NULL)
573 lexer->rec->state->streams = antlr3StackNew(0);
575 if (lexer->rec->state->streams == NULL
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
FramedConnection.java 47 * A socket connection to a remote peer. A connection hosts streams which can
65 // frameWriter (to do blocking I/O) and this (to create streams). Such
80 * User code to run in response to incoming streams or settings. Calls to this are always invoked
84 private final Map<Integer, FramedStream> streams = new HashMap<>(); field in class:FramedConnection
183 * Returns the number of {@link FramedStream#isOpen() open streams} on this
187 return streams.size();
191 return streams.get(id);
195 FramedStream stream = streams.remove(streamId);
196 if (stream != null && streams.isEmpty()) {
268 streams.put(streamId, stream)
    [all...]
  /packages/services/Car/service/src/com/android/car/
CarAudioService.java 485 public void onFocusChange(int focusState, int streams, int externalFocus) {
487 mFocusReceived = FocusState.create(focusState, streams, externalFocus);
740 (mCurrentFocusState.streams & mLastFocusRequestToCar.streams) !=
741 mLastFocusRequestToCar.streams) {
742 Log.w(TAG_FOCUS, "streams mismatch, requested:0x" + Integer.toHexString(
743 mLastFocusRequestToCar.streams) + " got:0x" +
744 Integer.toHexString(mCurrentFocusState.streams));
745 // treat it as focus loss as requested streams are not there.
1768 public final int streams; field in class:CarAudioService.FocusState
1814 public final int streams; field in class:CarAudioService.FocusRequest
    [all...]
  /external/libbrillo/brillo/http/
http_connection.h 17 #include <brillo/streams/stream.h>
  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_state_sol.h 98 struct ilo_state_sol_stream_info streams[ILO_STATE_SOL_MAX_STREAM_COUNT]; member in struct:ilo_state_sol_info
  /external/pdfium/xfa/fxfa/
xfa_ffapp.h 31 const std::vector<CPDF_Stream*>& streams);
  /external/sonivox/arm-wt-22k/lib_src/
eas_miditypes.h 101 S_SMF_STREAM *streams; /* pointer to individual streams in file */ member in struct:s_smf_data_tag
108 EAS_U16 numStreams; /* actual number of streams */
  /hardware/interfaces/camera/device/3.2/
types.hal 30 * stream relate to the other streams.
101 * support high speed output in NORMAL mode. All streams in this
112 * 1. The HAL must support up to 2 streams with sizes reported by
193 * If a configureStreams() call returns a non-fatal error, all active streams
246 * streamType INPUT, the value of this field is always 0. For all streams
289 * unsupported rotation if rotation field of all streams is ROTATION_0.
300 * structure defines all the output streams and the reprocessing input
311 vec<Stream> streams;
314 * The operation mode of streams in this configuration. The HAL can use this
364 * For output streams, these are the HAL's producer usage flags. For inpu
    [all...]
  /hardware/libhardware/modules/camera/3_4/
request_tracker_test.cpp 43 uint32_t frame, std::vector<camera3_stream_t*> streams) {
49 for (const auto stream : streams) {
59 std::vector<camera3_stream_t*> streams,
62 GenerateCaptureRequest(frame, streams);
109 // Add a request using both streams.
256 // Both streams should be considered full now, since neither is configured.
static_properties.cpp 67 // due to output streams without an associated stall duration, as
170 // Reprocessing metadata only necessary if input streams are allowed.
270 } else if (stream_config->streams == nullptr) {
271 ALOGE("%s: NULL stream configuration streams", __func__);
275 // Check that all streams are either inputs or outputs (or both).
277 const camera3_stream_t* stream = stream_config->streams[i];
300 const camera3_stream_t* stream = stream_config->streams[i];
323 "%s: Requested number of input streams %d is greater than "
351 const camera3_stream_t* stream = stream_config->streams[i];
372 // Find and count output streams
    [all...]
v4l2_camera.cpp 147 // Extract max streams for use in verifying stream configs.
151 HAL_LOGE("Failed to get max num input streams from static metadata.");
157 HAL_LOGE("Failed to get max num output streams from static metadata.");
333 if (stream_config->streams[i]->rotation != CAMERA3_STREAM_ROTATION_0) {
335 stream_config->streams[i]->rotation,
355 camera3_stream_t* stream = stream_config->streams[0];
362 // stream at a time. If not all streams are the same format
367 stream = stream_config->streams[i];
408 // Set all the streams dataspaces, usages, and max buffers.
410 stream = stream_config->streams[i]
    [all...]
  /system/update_engine/common/
file_fetcher.h 27 #include <brillo/streams/stream.h>
  /device/google/marlin/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_snapshot.c 213 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_METADATA) {
214 p_stream = &channel->streams[i];
293 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_RAW) {
294 m_stream = &channel->streams[i];
361 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_SNAPSHOT) {
362 m_stream = &channel->streams[i];
389 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_POSTVIEW) {
390 p_stream = &channel->streams[i];
591 mm_app_del_stream(test_obj, ch, &ch->streams[i]);
  /device/huawei/angler/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_snapshot.c 211 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_METADATA) {
212 p_stream = &channel->streams[i];
291 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_RAW) {
292 m_stream = &channel->streams[i];
361 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_SNAPSHOT) {
362 m_stream = &channel->streams[i];
389 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_POSTVIEW) {
390 p_stream = &channel->streams[i];
588 mm_app_del_stream(test_obj, ch, &ch->streams[i]);
  /device/lge/bullhead/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_snapshot.c 211 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_METADATA) {
212 p_stream = &channel->streams[i];
291 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_RAW) {
292 m_stream = &channel->streams[i];
361 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_SNAPSHOT) {
362 m_stream = &channel->streams[i];
389 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_POSTVIEW) {
390 p_stream = &channel->streams[i];
588 mm_app_del_stream(test_obj, ch, &ch->streams[i]);
  /external/webrtc/talk/session/media/
mediasession.cc 242 // if a StreamParams exist for another Stream in streams with sync_label
245 const MediaSessionOptions::Streams& streams,
252 // Check if a CNAME exist for any of the other synched streams.
253 for (MediaSessionOptions::Streams::const_iterator stream_it = streams.begin();
254 stream_it != streams.end() ; ++stream_it) {
299 "Could not generate an SCTP SID: too many SCTP streams.";
337 const StreamParamsVec& streams = media->streams(); local
    [all...]
  /packages/services/Car/tests/carservice_test/src/com/android/car/test/
CarAudioFocusSystemSoundTest.java 327 void sendAudioFocusState(int state, int streams, int extFocus) {
330 mStreams = streams;
336 .addIntValue(state, streams, extFocus, 0)
362 mRequestedStreams = v.get(VehicleAudioFocusIndex.STREAMS);
372 int state, streams, extFocus; local
375 streams = mStreams;
380 .addIntValue(state, streams, extFocus, 0)
  /hardware/interfaces/camera/device/3.2/default/
CameraDeviceSession.cpp 451 std::shared_ptr<InflightBatch> batch, const std::vector<int>& streams) {
453 for (int streamId : streams) {
471 for (int streamId : streams) {
493 outBufs.reserve(streams.size());
494 for (int streamId : streams) {
515 for (int streamId : streams) {
844 hidl_vec<camera3_stream_t*> streams; local
847 stream_list.num_streams = requestedConfiguration.streams.size();
848 streams.resize(stream_list.num_streams);
849 stream_list.streams = streams.data()
    [all...]
  /external/autotest/client/site_tests/video_VideoEncodeAccelerator/
video_VideoEncodeAccelerator.py 111 def run_once(self, in_cloud, streams, profile, gtest_filter=None):
112 """Runs video_encode_accelerator_unittest on the streams.
115 @param streams: The test streams for video_encode_accelerator_unittest.
123 for path, width, height, bit_rate in streams:
154 # Continue to run the remaining test streams and raise
155 # the last failure after finishing all streams.

Completed in 3054 milliseconds

1 23 4 5 6 7 8 91011>>