aboutsummaryrefslogtreecommitdiff
path: root/third_party
diff options
context:
space:
mode:
authorJordan Bayles <jophba@chromium.org>2020-01-13 13:39:09 -0800
committerCommit Bot <commit-bot@chromium.org>2020-01-14 16:47:06 +0000
commit8af57928ad2ab223306ce9f7d20d4dfab90c3404 (patch)
tree968197fb5030efcd106e9354b8253142f133ccab /third_party
parent6504ff2d1e282fcd7942e64a3e57135eae9987d3 (diff)
downloadopenscreen-8af57928ad2ab223306ce9f7d20d4dfab90c3404.tar.gz
Integrate ReceiverSession into standalone receiver
This patch integrates the ReceiverSession into the standalone_receiver/receiver demo. A dummy messageport implementation is included. Change-Id: I78040197730c14531c33a1a45685574762b5562a Reviewed-on: https://chromium-review.googlesource.com/c/openscreen/+/1985239 Commit-Queue: Jordan Bayles <jophba@chromium.org> Reviewed-by: mark a. foltz <mfoltz@chromium.org>
Diffstat (limited to 'third_party')
-rw-r--r--third_party/chromium_quic/BUILD.gn2
-rw-r--r--third_party/chromium_quic/demo/client.cc3
2 files changed, 3 insertions, 2 deletions
diff --git a/third_party/chromium_quic/BUILD.gn b/third_party/chromium_quic/BUILD.gn
index 4644bd5e..e620c3a6 100644
--- a/third_party/chromium_quic/BUILD.gn
+++ b/third_party/chromium_quic/BUILD.gn
@@ -26,7 +26,7 @@ source_set("chromium_quic") {
]
}
-executable("quic_demo_client") {
+executable("quic_streaming_playback_controller") {
sources = [
"demo/client.cc",
"demo/delegates.cc",
diff --git a/third_party/chromium_quic/demo/client.cc b/third_party/chromium_quic/demo/client.cc
index e57e97d3..d3eb2566 100644
--- a/third_party/chromium_quic/demo/client.cc
+++ b/third_party/chromium_quic/demo/client.cc
@@ -35,7 +35,8 @@ int main(int argc, char** argv) {
if (argc < 2) {
dprintf(STDERR_FILENO,
- "Missing port number\nusage: demo_client <server-port>\n");
+ "Missing port number\nusage: streaming_playback_controller "
+ "<server-port>\n");
return 1;
}
int port = atoi(argv[1]);