-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from linuxserver/placebo
Add libplacebo and libdovi
- Loading branch information
Showing
3 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,8 +24,10 @@ ENV \ | |
KVAZAAR=2.2.0 \ | ||
LAME=3.100 \ | ||
LIBASS=0.17.1 \ | ||
LIBDOVI=2.1.0 \ | ||
LIBDRM=2.4.118 \ | ||
LIBMFX=22.5.4 \ | ||
LIBPLACEBO=6.338.1 \ | ||
LIBVA=2.20.0 \ | ||
LIBVDPAU=1.5 \ | ||
LIBVIDSTAB=1.1.1 \ | ||
|
@@ -55,6 +57,7 @@ RUN \ | |
autoconf \ | ||
automake \ | ||
bzip2 \ | ||
cargo \ | ||
cmake \ | ||
diffutils \ | ||
doxygen \ | ||
|
@@ -493,6 +496,31 @@ RUN \ | |
-DCMAKE_INSTALL_PREFIX=/usr/local \ | ||
.. && \ | ||
ninja install | ||
RUN \ | ||
echo "**** grabbing libdovi ****" && \ | ||
mkdir -p /tmp/libdovi && \ | ||
git clone \ | ||
--branch ${LIBDOVI} \ | ||
https://github.com/quietvoid/dovi_tool.git \ | ||
/tmp/libdovi | ||
RUN \ | ||
echo "**** compiling libdovi ****" && \ | ||
cd /tmp/libdovi/dolby_vision && \ | ||
cargo install [email protected]+cargo-0.74.0 --locked && \ | ||
cargo cinstall --release && \ | ||
strip -d /usr/local/lib/libdovi.so | ||
RUN \ | ||
echo "**** grabbing libplacebo ****" && \ | ||
mkdir -p /tmp/libplacebo && \ | ||
git clone \ | ||
--branch v${LIBPLACEBO} \ | ||
--recursive https://code.videolan.org/videolan/libplacebo \ | ||
/tmp/libplacebo | ||
RUN \ | ||
echo "**** compiling libplacebo ****" && \ | ||
cd /tmp/libplacebo && \ | ||
meson build --buildtype release && \ | ||
ninja -C build install | ||
RUN \ | ||
echo "**** grabbing SVT-AV1 ****" && \ | ||
mkdir -p /tmp/svt-av1 && \ | ||
|
@@ -696,6 +724,7 @@ RUN \ | |
--enable-libopencore-amrwb \ | ||
--enable-libopenjpeg \ | ||
--enable-libopus \ | ||
--enable-libplacebo \ | ||
--enable-libshaderc \ | ||
--enable-libsvtav1 \ | ||
--enable-libtheora \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters