diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2019-11-25 12:42:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-25 12:42:00 -0500 |
commit | 49841b8ce9d00445295ef841f2ebede713e259af (patch) | |
tree | fcc5f84936c009912f47f01cfb14ff11a4f5879c /python/servo/bootstrap.py | |
parent | f6a20a14b8e4f2412ac411e1a5a50c2952ee6b1b (diff) | |
parent | 0ee6695e4eb80612699579e74d577e1989ee0f76 (diff) | |
download | servo-49841b8ce9d00445295ef841f2ebede713e259af.tar.gz servo-49841b8ce9d00445295ef841f2ebede713e259af.zip |
Auto merge of #24754 - asajeffrey:gstplugin, r=ferjm
Add a gstreamer servosrc plugin
<!-- Please describe your changes on the following line: -->
A first draft of a gstreamer plugin. Lots of stuff to fix, most importantly that it should write to GL memory, not do readback. But it's a start!
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes do not require tests because it's a new platform
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Diffstat (limited to 'python/servo/bootstrap.py')
-rw-r--r-- | python/servo/bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/bootstrap.py b/python/servo/bootstrap.py index f65284073e9..e191798cac5 100644 --- a/python/servo/bootstrap.py +++ b/python/servo/bootstrap.py @@ -49,7 +49,7 @@ def install_trusty_deps(force): def check_gstreamer_lib(): - return subprocess.call(["pkg-config", "--atleast-version=1.14", "gstreamer-1.0"], + return subprocess.call(["pkg-config", "--atleast-version=1.16", "gstreamer-1.0"], stdout=PIPE, stderr=PIPE) == 0 |