Searched refs:video_streams (Results 1 – 11 of 11) sorted by relevance
/external/openscreen/cast/streaming/ |
D | offer_messages_unittest.cc | 106 EXPECT_EQ(2u, offer.video_streams.size()); in ExpectEqualsValidOffer() 107 const auto& video_streams = offer.video_streams; in ExpectEqualsValidOffer() local 109 const bool flipped = video_streams[0].stream.index != 0; in ExpectEqualsValidOffer() 110 const VideoStream& vs_one = flipped ? video_streams[1] : video_streams[0]; in ExpectEqualsValidOffer() 111 const VideoStream& vs_two = flipped ? video_streams[0] : video_streams[1]; in ExpectEqualsValidOffer() 494 video_stream_invalid.video_streams[0].max_frame_rate.denominator = 0; in TEST()
|
D | offer_messages.cc | 388 std::vector<VideoStream> video_streams; in Parse() local 419 video_streams.push_back(std::move(stream.value())); in Parse() 424 std::move(audio_streams), std::move(video_streams)}; in Parse() 442 for (auto& vs : video_streams) { in ToJson()
|
D | offer_messages.h | 108 std::vector<VideoStream> video_streams = {}; member
|
D | sender_session.cc | 106 CreateStreamList(audio_configs.size(), video_configs, &offer.video_streams); in CreateOffer() 263 for (const VideoStream& stream : current_negotiation_->offer.video_streams) { in SpawnVideoSender()
|
D | receiver_session.cc | 152 if (!offer.video_streams.empty() && !preferences_.video_codecs.empty()) { in OnOffer() 154 SelectStream(preferences_.video_codecs, offer.video_streams); in OnOffer()
|
/external/webrtc/media/engine/ |
D | webrtc_video_engine_unittest.cc | 4010 const std::vector<FakeVideoReceiveStream*>& video_streams = in TEST_F() local 4012 ASSERT_EQ(1U, video_streams.size()); in TEST_F() 4013 const FakeVideoReceiveStream& video_stream = *video_streams.front(); in TEST_F() 4032 const std::vector<FakeVideoReceiveStream*>& video_streams = in TEST_F() local 4034 ASSERT_EQ(1U, video_streams.size()); in TEST_F() 4035 const FakeVideoReceiveStream& video_stream = *video_streams.front(); in TEST_F() 4051 const std::vector<FakeVideoReceiveStream*>& video_streams = in TEST_F() local 4053 ASSERT_EQ(1U, video_streams.size()); in TEST_F() 4054 const FakeVideoReceiveStream& video_stream = *video_streams.front(); in TEST_F() 4082 const std::vector<FakeVideoReceiveStream*>& video_streams = in TEST_F() local [all …]
|
/external/webrtc/rtc_tools/rtp_generator/ |
D | rtp_generator.cc | 154 gen_options.video_streams.push_back(*video_stream_config); in ParseRtpGeneratorOptionsFromFile() 172 for (const auto& send_config : options.video_streams) { in RtpGenerator() 284 for (const auto& video_stream : options_.video_streams) { in GetMaxDuration() 300 for (size_t i = 0; i < options_.video_streams.size(); ++i) { in WaitUntilAllVideoStreamsFinish() 301 const int64_t end_ms = start_ms_ + options_.video_streams[i].duration_ms; in WaitUntilAllVideoStreamsFinish()
|
D | rtp_generator.h | 55 std::vector<VideoSendStreamConfig> video_streams; member
|
/external/autotest/server/cros/ |
D | cfm_jmidata_v3_helper.py | 194 video_streams = 0 207 video_streams += 1 208 num_video_streams.append(video_streams)
|
/external/webrtc/pc/ |
D | media_session_unittest.cc | 472 StreamParamsVec video_streams; in CreateComplexVideoStreamParamsVec() local 473 video_streams.push_back(simulcast_params); in CreateComplexVideoStreamParamsVec() 475 return video_streams; in CreateComplexVideoStreamParamsVec() 2465 const StreamParamsVec& video_streams = vcd->streams(); in TEST_F() local 2466 ASSERT_EQ(1U, video_streams.size()); in TEST_F() 2467 EXPECT_EQ(video_streams[0].cname, audio_streams[0].cname); in TEST_F() 2468 EXPECT_EQ(kVideoTrack1, video_streams[0].id); in TEST_F() 2541 EXPECT_EQ(video_streams[0], updated_video_streams[0]); in TEST_F() 2578 const StreamParamsVec& video_streams = vcd->streams(); in TEST_F() local 2579 ASSERT_EQ(1U, video_streams.size()); in TEST_F() [all …]
|
D | peer_connection_rtp_unittest.cc | 334 std::vector<rtc::scoped_refptr<MediaStreamInterface>> video_streams = in TEST_F() local 337 ASSERT_EQ(2u, video_streams.size()); in TEST_F() 338 EXPECT_EQ(kStreamId1, video_streams[0]->id()); in TEST_F() 339 EXPECT_EQ(kStreamId2, video_streams[1]->id()); in TEST_F()
|