diff options
author | Seungha Yang <seungha@centricular.com> | 2022-10-30 22:28:17 +0900 |
---|---|---|
committer | GStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org> | 2022-11-04 06:37:50 +0000 |
commit | 5effb1b6e848940f1a947b9548124a56f60af14d (patch) | |
tree | d86f43d9e46c537f3fe46264632cd59f096a1003 | |
parent | 671363e7ab563531b77203dc82dab612fdb4c562 (diff) |
libvpx: Enable high bitdepth support
Required for high bitdepth en/decoding
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/997>
-rw-r--r-- | recipes/libvpx.recipe | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/libvpx.recipe b/recipes/libvpx.recipe index 8d9b864d..772ed8bd 100644 --- a/recipes/libvpx.recipe +++ b/recipes/libvpx.recipe @@ -17,8 +17,8 @@ class Recipe(recipe.Recipe): "--libdir=%(libdir)s %(options)s" configure_options = "--enable-pic --as=nasm --disable-unit-tests --size-limit=16384x16384 " \ "--enable-postproc --enable-multi-res-encoding --enable-temporal-denoising " \ - "--enable-vp9-temporal-denoising --enable-vp9-postproc --disable-tools " \ - "--disable-examples --disable-docs " + "--enable-vp9-temporal-denoising --enable-vp9-postproc --enable-vp9-highbitdepth " \ + "--disable-tools --disable-examples --disable-docs " add_host_build_target = False supports_cache_variables = False can_use_configure_cache = False |