From 83f9979254f974f8eb7001143b32699f5a4e16cd Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Wed, 5 Dec 2018 13:07:51 +0100 Subject: [PATCH 01/22] libva: Update version from 1.8.2 to 2.3.0 The project moved to GitHub, and releases are only published there. Update the source URL accordingly. The change-log is available [online][1]. [1]: https://github.com/intel/libva/blob/master/NEWS --- libva.be0 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libva.be0 b/libva.be0 index ee1b9373b..8cfab2428 100755 --- a/libva.be0 +++ b/libva.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION libva-1.8.2-0 +# BEE_VERSION libva-2.3.0-0 ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.) @@ -9,7 +9,7 @@ ## The source URL(s) define the location of the sources that will be ## downloaded. Version variables may be used to simplify reuse of this bee-file. -SRCURL[0]="https://www.freedesktop.org/software/vaapi/releases/libva/libva-${PKGVERSION}.tar.bz2" +SRCURL[0]="https://github.com/intel/libva/releases/download/${PKGVERSION}/libva-${PKGVERSION}.tar.bz2" ############################################################################### ## Add URLs/pathes to patch files to the PATCHURL array. From fa0e50e2fb8d3e3894bbdc1ec4f17a0041e961ee Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Wed, 5 Dec 2018 17:52:17 +0100 Subject: [PATCH 02/22] libva-utils: Update version from 1.8.2 to 2.3.0 The project moved to GitHub, so update the source URL. [1]: https://github.com/intel/libva-utils/blob/master/NEWS --- libva-utils.be0 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libva-utils.be0 b/libva-utils.be0 index a44721e3b..d4d8c8a96 100755 --- a/libva-utils.be0 +++ b/libva-utils.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION libva-utils-1.8.2-0 +# BEE_VERSION libva-utils-2.3.0-0 ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.) @@ -9,7 +9,7 @@ ## The source URL(s) define the location of the sources that will be ## downloaded. Version variables may be used to simplify reuse of this bee-file. -SRCURL[0]="https://www.freedesktop.org/software/vaapi/releases/libva/libva-utils-${PKGVERSION}.tar.bz2" +SRCURL[0]="https://github.com/intel/libva-utils/archive/${PKGVERSION}.zip libva-utils-${PKGVERSION}.tar.bz2" ############################################################################### ## Add URLs/pathes to patch files to the PATCHURL array. From 26d0aeca7e97ad7fde2a520a1f12434c78a703c9 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Wed, 5 Dec 2018 13:02:03 +0100 Subject: [PATCH 03/22] intel-vaapi-driver: Add version 2.3.0-pre1 [Description][0]: > VA-API (Video Acceleration API) user mode driver for Intel GEN > Graphics family > > VA-API is an open-source library and API specification, which provides > access to graphics hardware acceleration capabilities for video > processing. It consists of a main library and driver-specific > acceleration backends for each supported hardware vendor. > > The current video driver backend provides a bridge to the GEN GPUs > through the packaging of buffers and commands to be sent to the i915 > driver for exercising both hardware and shader functionality for video > decode, encode, and processing. [1]: https://github.com/intel/intel-vaapi-driver --- intel-vaapi-driver.be0 | 85 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100755 intel-vaapi-driver.be0 diff --git a/intel-vaapi-driver.be0 b/intel-vaapi-driver.be0 new file mode 100755 index 000000000..6bb27aebc --- /dev/null +++ b/intel-vaapi-driver.be0 @@ -0,0 +1,85 @@ +#!/usr/bin/env beesh + +# BEE_VERSION intel-vaapi-driver-2.3.0.pre1-0 + +## this file was created by bee init and should be executed to build a +## bee-package. (Additional hints are located at the end of this file.) + +############################################################################### +## The source URL(s) define the location of the sources that will be +## downloaded. Version variables may be used to simplify reuse of this bee-file. + +SRCURL[0]="https://github.com/intel/intel-vaapi-driver/archive/${PKGVERSION}.tar.gz intel-vaapi-driver-2.3.0.pre1.tar.gz" + +############################################################################### +## Add URLs/pathes to patch files to the PATCHURL array. +## The sources will be patched in the order of the array. + +# PATCHURL+=() + +############################################################################### +## Add filename patterns to the EXCLUDE array of files that should not +## be added to you package but may be present in the image directory. + +# EXCLUDE+=() + +############################################################################### +## Uncomment the next statement, if the software may not be able to be built +## outside the source directory and needs to be built inside the source +## directory. + +# build_in_sourcedir + +############################################################################### +## bee cannot detect buildtypes specified in subdirectories. +## Sometimes packages "hide" the real sources in a subdirectory named +## 'src' or 'cmake' or .. +## use 'sourcesubdir_append' to specify this directory if known. + +# sourcesubdir_append src + + +############################################################################### +## Change the default (auto-detected) steps to +## extract, patch, configure/setup, build and install the software. +## Make sure the mee_install function does install everything to the +## image directory "${D}" + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +#mee_configure() { +# bee_configure +#} + +#mee_build() { +# bee_build +#} + +#mee_install() { +# bee_install +#} +## by default this may be 'make install DESTDIR="${D}"' + +############################################################################### +## +## Additional hints: +## +## The name of this bee-file should follow the following naming convention: +## pkgname-pkgversion-pkgrevision.bee +## +## You may remove all comments as long as SRCURL[0] is set. +## +## Everything in this file will be executed in a bash environment. +## +## Build the package by executing +## './pkg-version-N.bee' or +## 'beesh ./pkg-version-N.bee' +## +## see http://beezinga.org/ +## From ba79f1cc82ce713525cb78be92e70c728e63960c Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 6 Dec 2018 09:19:43 +0100 Subject: [PATCH 04/22] yasm: Convert to versionless bee file --- yasm-1.2.0-0.bee => yasm.be0 | 2 ++ 1 file changed, 2 insertions(+) rename yasm-1.2.0-0.bee => yasm.be0 (92%) diff --git a/yasm-1.2.0-0.bee b/yasm.be0 similarity index 92% rename from yasm-1.2.0-0.bee rename to yasm.be0 index b59dea5bd..56100633f 100755 --- a/yasm-1.2.0-0.bee +++ b/yasm.be0 @@ -1,5 +1,7 @@ #!/bin/env beesh +# BEE_VERSION yasm-1.2.0-0 + SRCURL[0]="http://www.tortall.net/projects/yasm/releases/yasm-1.2.0.tar.gz" PATCHURL[0]="" From 388727618321ab3990f0b9097abb799b34b5c610 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 6 Dec 2018 09:20:14 +0100 Subject: [PATCH 05/22] yasm: Remove trailing space --- yasm.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yasm.be0 b/yasm.be0 index 56100633f..169130777 100755 --- a/yasm.be0 +++ b/yasm.be0 @@ -21,7 +21,7 @@ mee_patch() { } mee_configure() { - bee_configure + bee_configure } mee_build() { From 370e70461ca7a028317841a1e11bb49589fe3fee Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 6 Dec 2018 09:20:46 +0100 Subject: [PATCH 06/22] yasm: Comment out unchanged bee methods --- yasm.be0 | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/yasm.be0 b/yasm.be0 index 169130777..31e68fa8d 100755 --- a/yasm.be0 +++ b/yasm.be0 @@ -4,7 +4,7 @@ SRCURL[0]="http://www.tortall.net/projects/yasm/releases/yasm-1.2.0.tar.gz" -PATCHURL[0]="" +# PATCHURL[0]="" # BEE_CONFIGURE=compat @@ -12,22 +12,22 @@ PATCHURL[0]="" -mee_extract() { - bee_extract ${@} -} +#mee_extract() { +# bee_extract ${@} +#} -mee_patch() { - bee_patch ${@} -} +#mee_patch() { +# bee_patch ${@} +#} -mee_configure() { - bee_configure -} +#mee_configure() { +# bee_configure +#} -mee_build() { - bee_build -} +#mee_build() { +# bee_build +#} -mee_install() { - bee_install -} +#mee_install() { +# bee_install +#} From b9e61c06c2bb4061ce21879737911be943d6d3ea Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 6 Dec 2018 09:21:46 +0100 Subject: [PATCH 07/22] yasm: Securely download source over HTTPS --- yasm.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yasm.be0 b/yasm.be0 index 31e68fa8d..3eac2e10e 100755 --- a/yasm.be0 +++ b/yasm.be0 @@ -2,7 +2,7 @@ # BEE_VERSION yasm-1.2.0-0 -SRCURL[0]="http://www.tortall.net/projects/yasm/releases/yasm-1.2.0.tar.gz" +SRCURL[0]="https://www.tortall.net/projects/yasm/releases/yasm-1.2.0.tar.gz" # PATCHURL[0]="" From d45925d601412293aa52b92e565f127da7de77c1 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 6 Dec 2018 09:22:02 +0100 Subject: [PATCH 08/22] yasm: Use bee variable `PKGVERSION` --- yasm.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yasm.be0 b/yasm.be0 index 3eac2e10e..40af274a8 100755 --- a/yasm.be0 +++ b/yasm.be0 @@ -2,7 +2,7 @@ # BEE_VERSION yasm-1.2.0-0 -SRCURL[0]="https://www.tortall.net/projects/yasm/releases/yasm-1.2.0.tar.gz" +SRCURL[0]="https://www.tortall.net/projects/yasm/releases/yasm-${PKGVERSION}.tar.gz" # PATCHURL[0]="" From 002c07f1ac6f5849565df35757d3b471d18071d3 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 6 Dec 2018 09:22:20 +0100 Subject: [PATCH 09/22] yasm: Update version from 1.2.0 to 1.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The release is from August 2014, and the [change-log][1] is below. > Changes from 1.2.0 to 1.3.0: > > * Add AMD TBM instructions. > * Add HSW TSX instructions. > * Fix “pmulhrw”, “vphaddudq”, and “vpbroadcastq” instructions. > * Add Intel SHA, ADX, RDSEED, and SMAP instructions. > * Use a larger hash table size in NASM macro handling. > * Add support for x32 ABI (called “elfx32”). > * Add support for “function” decorator in win32/win64 object files. > * In Mach-O, only warn on repeated flags if the new flags are > different. FFmpeg failed to build with NASM, I wanted to try Yasm, but in the end it worked fine with a newer NASM. Add the update anyway. But NASM seems to be under more active development. [1]: https://yasm.tortall.net/releases/Release1.3.0.html --- yasm.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yasm.be0 b/yasm.be0 index 40af274a8..8872fb770 100755 --- a/yasm.be0 +++ b/yasm.be0 @@ -1,6 +1,6 @@ #!/bin/env beesh -# BEE_VERSION yasm-1.2.0-0 +# BEE_VERSION yasm-1.3.0-0 SRCURL[0]="https://www.tortall.net/projects/yasm/releases/yasm-${PKGVERSION}.tar.gz" From 73a5c5ae10436cbb5284fa873eb3fc1c11ef9f0e Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 6 Dec 2018 09:28:00 +0100 Subject: [PATCH 10/22] nasm: Convert to versionless bee file --- nasm-2.09.04-0.bee => nasm.be0 | 2 ++ 1 file changed, 2 insertions(+) rename nasm-2.09.04-0.bee => nasm.be0 (92%) diff --git a/nasm-2.09.04-0.bee b/nasm.be0 similarity index 92% rename from nasm-2.09.04-0.bee rename to nasm.be0 index bfc90d6e1..01b767a2c 100755 --- a/nasm-2.09.04-0.bee +++ b/nasm.be0 @@ -1,5 +1,7 @@ #!/bin/env beesh +# BEE_VERSION nasm-2.09.04-0 + SRCURL[0]="http://www.nasm.us/pub/nasm/releasebuilds/2.09.04/nasm-2.09.04.tar.bz2" PATCHURL[0]="" From 306502234c63a319b908b7fd7b89e6455293fad3 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 6 Dec 2018 09:28:16 +0100 Subject: [PATCH 11/22] nasm: Remove trailing space --- nasm.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nasm.be0 b/nasm.be0 index 01b767a2c..3a5521163 100755 --- a/nasm.be0 +++ b/nasm.be0 @@ -21,7 +21,7 @@ mee_patch() { } mee_configure() { - bee_configure + bee_configure } mee_build() { From 3440abe4b213d7f43060cbea6ce19c15233cee95 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 6 Dec 2018 09:28:56 +0100 Subject: [PATCH 12/22] nasm: Comment out unchanged bee methods --- nasm.be0 | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/nasm.be0 b/nasm.be0 index 3a5521163..5dd0c84ce 100755 --- a/nasm.be0 +++ b/nasm.be0 @@ -4,7 +4,7 @@ SRCURL[0]="http://www.nasm.us/pub/nasm/releasebuilds/2.09.04/nasm-2.09.04.tar.bz2" -PATCHURL[0]="" +# PATCHURL[0]="" # BEE_CONFIGURE=compat @@ -12,21 +12,21 @@ PATCHURL[0]="" B=${S} -mee_extract() { - bee_extract ${@} -} +#mee_extract() { +# bee_extract ${@} +#} -mee_patch() { - bee_patch ${@} -} +#mee_patch() { +# bee_patch ${@} +#} -mee_configure() { - bee_configure -} +#mee_configure() { +# bee_configure +#} -mee_build() { - bee_build -} +#mee_build() { +# bee_build +#} mee_install() { bee_install INSTALLROOT=${D} From 40dfcfcab35e0bdf5e48ccee5ee08f5243aeee8d Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 6 Dec 2018 09:29:35 +0100 Subject: [PATCH 13/22] nasm: Use `build_in_sourcedir` over deprecated `B=${S}` --- nasm.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nasm.be0 b/nasm.be0 index 5dd0c84ce..d471199ee 100755 --- a/nasm.be0 +++ b/nasm.be0 @@ -10,7 +10,7 @@ SRCURL[0]="http://www.nasm.us/pub/nasm/releasebuilds/2.09.04/nasm-2.09.04.tar.bz # EXCLUDE="" -B=${S} +build_in_sourcedir #mee_extract() { # bee_extract ${@} From a249569958e5a64fcf37967565efb54f43b6cbdb Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 6 Dec 2018 09:30:05 +0100 Subject: [PATCH 14/22] nasm: Securely download source archive over HTTPS --- nasm.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nasm.be0 b/nasm.be0 index d471199ee..0e659e2ac 100755 --- a/nasm.be0 +++ b/nasm.be0 @@ -2,7 +2,7 @@ # BEE_VERSION nasm-2.09.04-0 -SRCURL[0]="http://www.nasm.us/pub/nasm/releasebuilds/2.09.04/nasm-2.09.04.tar.bz2" +SRCURL[0]="https://www.nasm.us/pub/nasm/releasebuilds/2.09.04/nasm-2.09.04.tar.bz2" # PATCHURL[0]="" From 50afee3bc96dd4adb7be158cf3fded173aba593d Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 6 Dec 2018 09:31:50 +0100 Subject: [PATCH 15/22] nasm: Use bee variable `PKGVERSION` --- nasm.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nasm.be0 b/nasm.be0 index 0e659e2ac..f60714655 100755 --- a/nasm.be0 +++ b/nasm.be0 @@ -2,7 +2,7 @@ # BEE_VERSION nasm-2.09.04-0 -SRCURL[0]="https://www.nasm.us/pub/nasm/releasebuilds/2.09.04/nasm-2.09.04.tar.bz2" +SRCURL[0]="https://www.nasm.us/pub/nasm/releasebuilds/${PKGVERSION}/nasm-${PKGVERSION}.tar.bz2" # PATCHURL[0]="" From 7522663e965b8cf92c0b2dd535d8299a15dcce79 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 6 Dec 2018 09:32:04 +0100 Subject: [PATCH 16/22] nasm: Update version from 2.09.04 to 2.14 Released on November 7th, 2018. The change-log is available [online][1]. This update fixes build errors like below in FFmpeg 3.4.5. libavfilter/x86/avf_showcqt.asm:183: error: invalid combination of opcode and operands libavfilter/x86/avf_showcqt.asm:183: error: invalid combination of opcode and operands CC libavformat/adp.o CC libavformat/ads.o CC libavformat/adtsenc.o CC libavformat/adxdec.o libavfilter/x86/avf_showcqt.asm:187: error: invalid combination of opcode and operands libavfilter/x86/avf_showcqt.asm:187: error: invalid combination of opcode and operands [1]: https://www.nasm.us/pub/nasm/releasebuilds/2.14/doc/nasmdoc.txt --- nasm.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nasm.be0 b/nasm.be0 index f60714655..9e163412c 100755 --- a/nasm.be0 +++ b/nasm.be0 @@ -1,6 +1,6 @@ #!/bin/env beesh -# BEE_VERSION nasm-2.09.04-0 +# BEE_VERSION nasm-2.14-0 SRCURL[0]="https://www.nasm.us/pub/nasm/releasebuilds/${PKGVERSION}/nasm-${PKGVERSION}.tar.bz2" From 6d56444fb690604475d16cc6b0909654c1483203 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 6 Dec 2018 09:32:49 +0100 Subject: [PATCH 17/22] nasm: Use LZMA/XZ compressed archive over bz2 --- nasm.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nasm.be0 b/nasm.be0 index 9e163412c..681601faa 100755 --- a/nasm.be0 +++ b/nasm.be0 @@ -2,7 +2,7 @@ # BEE_VERSION nasm-2.14-0 -SRCURL[0]="https://www.nasm.us/pub/nasm/releasebuilds/${PKGVERSION}/nasm-${PKGVERSION}.tar.bz2" +SRCURL[0]="https://www.nasm.us/pub/nasm/releasebuilds/${PKGVERSION}/nasm-${PKGVERSION}.tar.xz" # PATCHURL[0]="" From a541f914131cb6c47616949ea626f1333b1f0cc8 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 6 Dec 2018 09:08:08 +0100 Subject: [PATCH 18/22] ffmpeg: Update version from 3.3.4 to 3.4.5 Rebuild against libva. --- ffmpeg.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.be0 b/ffmpeg.be0 index cc3345182..954587b43 100755 --- a/ffmpeg.be0 +++ b/ffmpeg.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION ffmpeg-3.3.4-0 +# BEE_VERSION ffmpeg-3.4.5-0 SRCURL[0]="https://ffmpeg.org/releases/ffmpeg-${PKGVERSION}.tar.bz2" From ee8df4d72badecdfb50bb97d7bfc4fbe506c66d2 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 6 Dec 2018 09:09:53 +0100 Subject: [PATCH 19/22] xine-lib: Update version from 1.2.6 to 1.2.9 Rebuild against libav 2.0.3. --- xine-lib.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xine-lib.be0 b/xine-lib.be0 index 06d157852..36bb58c94 100755 --- a/xine-lib.be0 +++ b/xine-lib.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION xine-lib-1.2.6-1 +# BEE_VERSION xine-lib-1.2.9-0 SRCURL[0]="http://sourceforge.net/projects/xine/files/xine-lib/${PKGVERSION}/xine-lib-${PKGVERSION}.tar.xz" From 7e013f94b57b807652a37395b89aa9c61f69d36d Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 6 Dec 2018 12:13:59 +0100 Subject: [PATCH 20/22] mesalib: Enable VA-API and VDPAU This adds the function `__vaDriverInit_1_3` to the drivers. Tested on *keineahnung* (Intel) and *inbetweenmove* (AMDGPU). --- mesalib.be0 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mesalib.be0 b/mesalib.be0 index e1f5e3f31..b5a062cfa 100755 --- a/mesalib.be0 +++ b/mesalib.be0 @@ -58,6 +58,8 @@ mee_configure() { --enable-gles1 \ --enable-gles2 \ --enable-osmesa \ + --enable-va \ + --enable-vdpau \ --enable-xa \ --enable-glx-tls \ --with-platforms="drm,x11,wayland" \ From 08f286a30f5559df88f263755ebcadd14e57d591 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 6 Dec 2018 12:14:26 +0100 Subject: [PATCH 21/22] mesalib: Increment revision to 1 --- mesalib.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesalib.be0 b/mesalib.be0 index b5a062cfa..d5917a01e 100755 --- a/mesalib.be0 +++ b/mesalib.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION mesalib-18.2.6-0 +# BEE_VERSION mesalib-18.2.6-1 ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.) From bbd039202c7c63d5c98b4ec7fcdf4fe9ff1f4096 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 6 Dec 2018 15:57:59 +0100 Subject: [PATCH 22/22] vlc: Rebuild for VA-API support Currently, only VDPAU is supported. But we want VA-API to be supported as well. checking libavutil/avutil.h usability... yes checking libavutil/avutil.h presence... yes checking for libavutil/avutil.h... yes checking for LIBVA... yes checking for LIBVA_DRM... yes checking for LIBVA_X11... yes checking for LIBVA_WL... yes checking libavcodec/vaapi.h usability... yes checking libavcodec/vaapi.h presence... yes checking for libavcodec/vaapi.h... yes configure: VA API acceleration activated Playing a movie, the VA-API is automatically used. libva info: VA-API version 1.3.0 libva info: va_getDriverName() returns 0 libva info: Trying to open /usr/lib/dri/i965_drv_video.so libva info: Found init function __vaDriverInit_1_3 libva info: va_openDriver() returns 0 Increment revision to 1. --- vlc.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlc.be0 b/vlc.be0 index 7d1ffc4a1..35fec81fd 100755 --- a/vlc.be0 +++ b/vlc.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION vlc-3.0.4-0 +# BEE_VERSION vlc-3.0.4-1 SRCURL[0]="https://download.videolan.org/pub/videolan/vlc/${PKGVERSION}/vlc-${PKGVERSION}.tar.xz"