From 202988414dda1c29dc4455ab9d05b4e5b2284ac5 Mon Sep 17 00:00:00 2001 From: Martin Eesmaa Date: Thu, 15 Sep 2022 17:41:04 +1000 Subject: [PATCH] add two packages on linux build --- FFMPEGVVC.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/FFMPEGVVC.md b/FFMPEGVVC.md index bb8df1e..0c6f257 100644 --- a/FFMPEGVVC.md +++ b/FFMPEGVVC.md @@ -147,13 +147,15 @@ Unfortunately, this is Ubuntu 22.04 LTS build only. If you are using other linux without Ubuntu 22.04 LTS, you have to build using this: ``` -sudo apt install build-essential cmake nasm db-autoreconf pkg-config python3-setuptools && \ +sudo apt install build-essential cmake nasm autoconf pkg-config python3-setuptools libtool && \ git clone --depth=1 https://github.com/fraunhoferhhi/vvenc && \ git clone --depth=1 https://github.com/fraunhoferhhi/vvdec && \ git clone --depth=1 https://github.com/mstorsjo/fdk-aac && \ git clone --depth=1 https://github.com/libsdl-org/SDL && \ git clone --depth=1 https://github.com/gnome/libxml2 && \ git clone --depth=1 https://github.com/MartinEesmaa/FFmpeg-FixVVC && \ +wget https://gist.githubusercontent.com/MartinEesmaa/6c4c8158139e04d432f49ac005ba7528/raw/04b05601cb51eec7e5041f8a45b71caa552669c2/libvvenc.pc.in +cp libvvenc.pc.in vvenc/pkgconfig/ cd vvenc && sudo make install-release install-prefix=/usr/local disable-lto=1 && \ cd .. && \ cd vvdec && sudo make install-release install-prefix=/usr/local disable-lto=1 && \