diff options
author | Karel Kočí <karel.koci@nic.cz> | 2020-02-04 17:09:16 +0100 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2020-02-04 17:09:16 +0100 |
commit | 0f7f92db26c729362f1eb1782e8b89aa43b59f41 (patch) | |
tree | b5aa3246e640ad6853e71661389ec5a17a6b19be /ffmpeg-rpi | |
parent | f8d315a4d3d41e055d8256b5808208145d505b75 (diff) | |
download | alpine-personal-pkgs-0f7f92db26c729362f1eb1782e8b89aa43b59f41.tar.gz alpine-personal-pkgs-0f7f92db26c729362f1eb1782e8b89aa43b59f41.tar.bz2 alpine-personal-pkgs-0f7f92db26c729362f1eb1782e8b89aa43b59f41.zip |
ffmpeg-rpi: try to do same configuration as upstream
Diffstat (limited to 'ffmpeg-rpi')
-rw-r--r-- | ffmpeg-rpi/APKBUILD | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/ffmpeg-rpi/APKBUILD b/ffmpeg-rpi/APKBUILD index 2dfe82c..907606a 100644 --- a/ffmpeg-rpi/APKBUILD +++ b/ffmpeg-rpi/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Karel Kočí <cynerd@email.cz> pkgname=ffmpeg-rpi pkgver=4.2.2 -pkgrel=4 +pkgrel=5 pkgdesc="Complete and free Internet live audio and video broadcasting solution for Linux/Unix - Raspberry Pi" url="https://ffmpeg.org/" arch="armhf aarch64" @@ -19,6 +19,8 @@ makedepends=" libass-dev libssh-dev libtheora-dev + libva-dev + libvdpau-dev libvorbis-dev libvpx-dev libxfixes-dev @@ -26,6 +28,7 @@ makedepends=" perl-dev raspberrypi-dev sdl2-dev + v4l-utils-dev x264-dev x265-dev xvidcore-dev @@ -70,6 +73,7 @@ build() { --enable-libx264 \ --enable-libx265 \ --enable-libtheora \ + --enable-libv4l2 \ --enable-postproc \ --enable-pic \ --enable-pthreads \ @@ -79,10 +83,9 @@ build() { --disable-stripping \ --disable-static \ --disable-librtmp \ - --disable-vaapi \ - --disable-vdpau \ + --enable-vaapi \ + --enable-vdpau \ --enable-libopus \ - --disable-v4l2_m2m \ --enable-omx \ --enable-omx-rpi \ --enable-mmal \ |