diff options
-rw-r--r-- | multimedia/vlc/README | 9 | ||||
-rw-r--r-- | multimedia/vlc/vlc.SlackBuild | 4 |
2 files changed, 3 insertions, 10 deletions
diff --git a/multimedia/vlc/README b/multimedia/vlc/README index 0ac727b531d3..48a30411a47c 100644 --- a/multimedia/vlc/README +++ b/multimedia/vlc/README @@ -34,12 +34,9 @@ security feature may be side stepped by building vlc with the RUNASROOT environment variable set e.g. RUNASROOT=yes sh vlc.SlackBuild -Some versions of the automatically deteced optional libaom package are -incompatible with this version of vlc (the build will fail with an -incompatible libaom). Such an incompatible libaom may be ignored -during building by setting the LIBAOM environmant variable to "no" -e.g. - LIBAOM=no sh vlc.SlackBuild +Playing of AV1 encoded video is supported when either of SBo's +multimedia/aom or libraries/dav1d packages is detected when vlc is built. +One of these is expected to become required in a future release. Please advise the maintainer to suggest support for any further options. diff --git a/multimedia/vlc/vlc.SlackBuild b/multimedia/vlc/vlc.SlackBuild index 580776308ff0..ef3ee0356960 100644 --- a/multimedia/vlc/vlc.SlackBuild +++ b/multimedia/vlc/vlc.SlackBuild @@ -105,9 +105,6 @@ fi # Enable vlc to be run as root runasroot=""; [ "${RUNASROOT:-no}" != "no" ] && runasroot="--enable-run-as-root" -# Disable use of libaom -libaom=""; [ "${LIBAOM:-yes}" = "no" ] && libaom="--disable-aom" - autoreconf -fiv chown -R root:root . @@ -132,7 +129,6 @@ LDFLAGS="$SLKLDFLAGS" \ $wayland \ $opencv \ $runasroot \ - $libaom \ --enable-merge-ffmpeg \ --enable-libva=no \ --with-kde-solid=no \ |