Home | History | Annotate | Download | only in 3_4

Lines Matching refs:streams

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;
383 streams.push_back(MakeStream(output_multisize_non_stalling_));
384 ExpectConfigurationSupported(streams, true);
388 std::vector<camera3_stream_t> streams;
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;
403 streams.push_back(MakeStream(input_, false, true));
405 streams.push_back(MakeStream(output_multisize_non_stalling_,
410 ExpectConfigurationSupported(streams, true);
414 std::vector<camera3_stream_t> streams;
416 streams.push_back(
418 ExpectConfigurationSupported(streams, true);
422 std::vector<camera3_stream_t> streams;
424 streams.push_back(
426 streams.push_back(MakeStream(output_multisize_non_stalling_));
427 ExpectConfigurationSupported(streams, true);
436 std::vector<camera3_stream_t*> streams(1);
438 0, streams.data(), CAMERA3_STREAM_CONFIGURATION_NORMAL_MODE};
444 std::vector<camera3_stream_t*> streams(2, nullptr);
446 streams.size(), streams.data(), CAMERA3_STREAM_CONFIGURATION_NORMAL_MODE};
452 streams, check for null.
460 std::vector<camera3_stream_t> streams;
462 streams.push_back(MakeStream(input_, false, true));
463 ExpectConfigurationSupported(streams, false);
467 std::vector<camera3_stream_t> streams;
469 streams.push_back(MakeStream(output_multisize_non_stalling_, false, false));
470 ExpectConfigurationSupported(streams, false);
474 std::vector<camera3_stream_t> streams;
476 streams.push_back(MakeStream(99));
477 ExpectConfigurationSupported(streams, false);
481 std::vector<camera3_stream_t> streams;
483 streams.push_back(
485 ExpectConfigurationSupported(streams, false);
489 std::vector<camera3_stream_t> streams;
490 streams.push_back(MakeStream(output_multisize_non_stalling_));
492 streams.push_back(MakeStream(output_multisize_non_stalling_, false, true));
493 ExpectConfigurationSupported(streams, false);
497 std::vector<camera3_stream_t> streams;
499 streams.push_back(MakeStream(input_));
500 ExpectConfigurationSupported(streams, false);
504 std::vector<camera3_stream_t> streams;
507 streams.push_back(MakeStream(input_, false, true));
510 streams.push_back(MakeStream(output_multisize_non_stalling_));
511 ExpectConfigurationSupported(streams, false);
515 streams.clear();
519 streams.push_back(MakeStream(input_, false, true));
522 streams.push_back(MakeStream(output_multisize_non_stalling_));
523 ExpectConfigurationSupported(streams, false);
527 std::vector<camera3_stream_t> streams;
530 streams.push_back(MakeStream(bidirectional_raw_));
532 ExpectConfigurationSupported(streams, true);
536 streams.clear();
540 streams.push_back(MakeStream(bidirectional_raw_));
542 ExpectConfigurationSupported(streams, false);
546 std::vector<camera3_stream_t> streams;
549 streams.push_back(MakeStream(bidirectional_self_supporting_stalling_));
551 ExpectConfigurationSupported(streams, true);
555 streams.clear();
559 streams.push_back(MakeStream(bidirectional_self_supporting_stalling_));
561 ExpectConfigurationSupported(streams, false);
565 std::vector<camera3_stream_t> streams;
568 streams.push_back(MakeStream(output_multisize_non_stalling_));
570 ExpectConfigurationSupported(streams, true);
574 streams.clear();
578 streams.push_back(MakeStream(output_multisize_non_stalling_));
580 ExpectConfigurationSupported(streams, false);
584 std::vector<camera3_stream_t> streams;
585 streams.push_back(MakeStream(input_, false, true));
586 streams.push_back(MakeStream(bidirectional_raw_));
588 ExpectConfigurationSupported(streams, false);
592 std::vector<camera3_stream_t> streams;
593 streams.push_back(MakeStream(input_, false, true));
595 streams.push_back(MakeStream(output_multisize_non_stalling_));
597 streams.push_back(MakeStream(bidirectional_raw_));
600 ExpectConfigurationSupported(streams, true);
604 std::vector<camera3_stream_t> streams;
607 streams.push_back(MakeStream(bidirectional_raw_, true, true));
608 ExpectConfigurationSupported(streams, false);