diff options
author | Delan Azabani <dazabani@igalia.com> | 2024-03-15 17:05:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-15 09:05:26 +0000 |
commit | 884d02495712d4cc0cafb26443ff5b1bf7e92f5b (patch) | |
tree | a7c17b917e8219fe6dcb472a6c4bec5cbb15a815 /python/servo/platform/linux.py | |
parent | 68b82e6d6133c8213cdad09b240d7a69227cc82a (diff) | |
download | servo-884d02495712d4cc0cafb26443ff5b1bf7e92f5b.tar.gz servo-884d02495712d4cc0cafb26443ff5b1bf7e92f5b.zip |
Add gstreamer plugins good/ugly for better codec support (#31687)
* NixOS: add gst-plugins-{good,ugly} for better codec support
* Add gstreamer plugins good/ugly to all other package lists
Diffstat (limited to 'python/servo/platform/linux.py')
-rw-r--r-- | python/servo/platform/linux.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/python/servo/platform/linux.py b/python/servo/platform/linux.py index 8e79ed34391..d954869c8dd 100644 --- a/python/servo/platform/linux.py +++ b/python/servo/platform/linux.py @@ -54,7 +54,8 @@ DNF_PKGS = ['libtool', 'gcc-c++', 'libXi-devel', 'freetype-devel', 'dbus-devel', 'ncurses-devel', 'harfbuzz-devel', 'ccache', 'clang', 'clang-libs', 'llvm', 'python3-devel', 'gstreamer1-devel', 'gstreamer1-plugins-base-devel', - 'gstreamer1-plugins-bad-free-devel', 'libjpeg-turbo-devel', + 'gstreamer1-plugins-good', 'gstreamer1-plugins-bad-free-devel', + 'gstreamer1-plugins-ugly-free', 'libjpeg-turbo-devel', 'zlib', 'libjpeg', 'vulkan-loader'] # https://voidlinux.org/packages/ @@ -68,8 +69,9 @@ XBPS_PKGS = ['libtool', 'gcc', 'libXi-devel', 'freetype-devel', 'fontconfig-devel', 'cabextract', 'expat-devel', 'cmake', 'cmake', 'libXcursor-devel', 'libXmu-devel', 'dbus-devel', 'ncurses-devel', 'harfbuzz-devel', 'ccache', 'glu-devel', - 'clang', 'gstreamer1-devel', - 'gst-plugins-base1-devel', 'gst-plugins-bad1-devel', 'vulkan-loader'] + 'clang', 'gstreamer1-devel', 'gst-plugins-base1-devel', + 'gst-plugins-good1', 'gst-plugins-bad1-devel', + 'gst-plugins-ugly1', 'vulkan-loader'] GSTREAMER_URL = \ "https://github.com/servo/servo-build-deps/releases/download/linux/gstreamer-1.16-x86_64-linux-gnu.20190515.tar.gz" |