Commit befa828e authored by Fabrice de Gans-Riberi's avatar Fabrice de Gans-Riberi Committed by Chromium LUCI CQ

Roll Open Screen from 79c6ea2a0c44 to 4dbefed1b355 (3 revisions)

https://chromium.googlesource.com/openscreen.git/+log/79c6ea2a0c44..4dbefed1b355

2020-12-15 fdegans@google.com Fix linkage of UdpPacket::kUdpMaxPacketSize
2020-12-12 alexleung@google.com Internal change
2020-12-11 miu@chromium.org Full Cast Standalone Sender (Mirroring)

If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/openscreen-chromium
Please CC jophba@chromium.org on the revert to ensure that a human
is aware of the problem.

To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+doc/master/autoroll/README.md

Bug: chromium:1110490
Tbr: jophba@chromium.org
Change-Id: Ief3f4b66129f2347cac35b1466fe296b5bc10f81
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2594215
Commit-Queue: Fabrice de Gans-Riberi <fdegans@chromium.org>
Commit-Queue: Kevin Marshall <kmarshall@chromium.org>
Reviewed-by: default avatarKevin Marshall <kmarshall@chromium.org>
Auto-Submit: Fabrice de Gans-Riberi <fdegans@chromium.org>
Cr-Commit-Position: refs/heads/master@{#837403}
parent 95d1d96e
......@@ -1276,7 +1276,7 @@ deps = {
Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + '3dd5b80bc4f172dd82925bb259cb7c82348409c5',
'src/third_party/openscreen/src':
Var('chromium_git') + '/openscreen' + '@' + '79c6ea2a0c44439e73d3c9d9859513eb4d086983',
Var('chromium_git') + '/openscreen' + '@' + '4dbefed1b3555883913cac604ac3ee42807ba204',
'src/third_party/openxr/src': {
'url': Var('chromium_git') + '/external/github.com/KhronosGroup/OpenXR-SDK' + '@' + '97cfe495bb7a3853266b646d1c79e169387f9c7a',
......
......@@ -17,6 +17,9 @@ namespace cast_streaming {
namespace {
const char kSenderId[] = "testSenderId";
const char kReceiverId[] = "testReceiverId";
// Converts |data_buffer| into an Open Screen EncodedFrame. The caller must keep
// a reference to |data_buffer| while using the returned EncodedFrame since they
// point to the same data.
......@@ -79,7 +82,7 @@ bool CastStreamingTestSender::Start(
base::Unretained(this)));
sender_session_ = std::make_unique<openscreen::cast::SenderSession>(
openscreen::IPAddress::kV6LoopbackAddress(), this, &environment_,
message_port_.get());
message_port_.get(), kSenderId, kReceiverId);
std::vector<openscreen::cast::AudioCaptureConfig> audio_configs;
if (audio_config) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment