multimedia/aom: update to 1.0.0.2920
Changes: https://aomedia.googlesource.com/aom/+log/e75b58a0c..736466423
This commit is contained in:
parent
7a7aaf82d7
commit
d6189fdb91
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=522621
3 changed files with 25 additions and 5 deletions
|
@ -3,8 +3,8 @@
|
|||
PORTNAME= aom
|
||||
DISTVERSIONPREFIX= v
|
||||
# XXX Switch to release after https://bugs.chromium.org/p/aomedia/issues/detail?id=2545
|
||||
DISTVERSION= 1.0.0-2890
|
||||
DISTVERSIONSUFFIX= -ge75b58a0c
|
||||
DISTVERSION= 1.0.0-2920
|
||||
DISTVERSIONSUFFIX= -g736466423
|
||||
CATEGORIES= multimedia
|
||||
|
||||
MAINTAINER= jbeich@FreeBSD.org
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1578355367
|
||||
SHA256 (jbeich-aom-v1.0.0-2890-ge75b58a0c_GH0.tar.gz) = db5f604ab3571133841563ab771323e4ec946a5a85ad3330b2a1db9b943b0048
|
||||
SIZE (jbeich-aom-v1.0.0-2890-ge75b58a0c_GH0.tar.gz) = 3469686
|
||||
TIMESTAMP = 1578696808
|
||||
SHA256 (jbeich-aom-v1.0.0-2920-g736466423_GH0.tar.gz) = 7163b0ac0a6c9cd100763221fd14ff9119a0539c0dc60facf54d71ed56fd23cf
|
||||
SIZE (jbeich-aom-v1.0.0-2920-g736466423_GH0.tar.gz) = 3477067
|
||||
|
|
20
multimedia/aom/files/patch-aom__dsp_vmaf.c
Normal file
20
multimedia/aom/files/patch-aom__dsp_vmaf.c
Normal file
|
@ -0,0 +1,20 @@
|
|||
Allow building before https://github.com/Netflix/vmaf/commit/82a86e040371
|
||||
|
||||
aom_dsp/vmaf.c:12:10: fatal error: 'libvmaf/libvmaf.h' file not found
|
||||
#include <libvmaf/libvmaf.h>
|
||||
^~~~~~~~~~~~~~~~~~~
|
||||
|
||||
--- aom_dsp/vmaf.c.orig 2020-01-10 22:53:28 UTC
|
||||
+++ aom_dsp/vmaf.c
|
||||
@@ -9,7 +9,11 @@
|
||||
* PATENTS file, you can obtain it at www.aomedia.org/license/patent.
|
||||
*/
|
||||
#include <assert.h>
|
||||
+#if __has_include(<libvmaf/libvmaf.h>)
|
||||
#include <libvmaf/libvmaf.h>
|
||||
+#else
|
||||
+#include <libvmaf.h>
|
||||
+#endif
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "aom_dsp/vmaf.h"
|
Loading…
Reference in a new issue