diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2019-01-31 12:14:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-31 12:14:16 -0500 |
commit | 6b648429f54b6b56546e8f744657e32bd6ac21b5 (patch) | |
tree | 9bac26cc42d412829af8040c454fd89af0e1afde /python/servo/build_commands.py | |
parent | 2b37e5c94d9207667f8a42fd4a032e2dacf9a354 (diff) | |
parent | 351723e6dab1d12eaaa2c7174e727b79795b2b46 (diff) | |
download | servo-6b648429f54b6b56546e8f744657e32bd6ac21b5.tar.gz servo-6b648429f54b6b56546e8f744657e32bd6ac21b5.zip |
Auto merge of #22780 - Manishearth:webrtc, r=jdm
Initial webrtc and getUserMedia DOM support
This is able to reach the point where connections are properly negotiated and ready to exchange streams.
<s>The `toJSON()` stuff doesn't work yet, so most example code will need to be tweaked to manually construct JSON first before sending SDP and ICE messages over websockets. I'll add support for this soon. (This may need webidl tweaks to support `[Default]` and `toJSON()`)</s>
For some reason I haven't yet figured out, connections are one-way, Servo is able to receive streams but the other end doesn't see the streams Servo sends. I don't think this is due to https://github.com/servo/media/issues/191, but that bug is making it harder to test.
This implementation simply drops streams that it receives, without connecting them up to any output elements, since servo-media-player doesn't yet have mediastream support.
Since servo can neither effectively send nor receive streams this implementation isn't useful yet, however it is getting large and I figured I'd get it reviewed and landed early as a base.
r? @jdm
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/22780)
<!-- Reviewable:end -->
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r-- | python/servo/build_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py index a3a463d5931..0fea67f9a70 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -446,7 +446,7 @@ class MachCommands(CommandBase): # Build the name of the package containing all GStreamer dependencies # according to the build target. gst_lib = "gst-build-{}".format(self.config["android"]["lib"]) - gst_lib_zip = "gstreamer-{}-1.14.3-20181105-103937.zip".format(self.config["android"]["lib"]) + gst_lib_zip = "gstreamer-{}-1.14.3-20190131-153818.zip".format(self.config["android"]["lib"]) gst_dir = os.path.join(target_path, "gstreamer") gst_lib_path = os.path.join(gst_dir, gst_lib) pkg_config_path = os.path.join(gst_lib_path, "pkgconfig") |