Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Jan 2020 00:35:27 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r522621 - in head/multimedia/aom: . files
Message-ID:  <202001110035.00B0ZRel078663@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Sat Jan 11 00:35:27 2020
New Revision: 522621
URL: https://svnweb.freebsd.org/changeset/ports/522621

Log:
  multimedia/aom: update to 1.0.0.2920
  
  Changes:	https://aomedia.googlesource.com/aom/+log/e75b58a0c..736466423

Added:
  head/multimedia/aom/files/patch-aom__dsp_vmaf.c   (contents, props changed)
Modified:
  head/multimedia/aom/Makefile   (contents, props changed)
  head/multimedia/aom/distinfo   (contents, props changed)

Modified: head/multimedia/aom/Makefile
==============================================================================
--- head/multimedia/aom/Makefile	Sat Jan 11 00:35:18 2020	(r522620)
+++ head/multimedia/aom/Makefile	Sat Jan 11 00:35:27 2020	(r522621)
@@ -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

Modified: head/multimedia/aom/distinfo
==============================================================================
--- head/multimedia/aom/distinfo	Sat Jan 11 00:35:18 2020	(r522620)
+++ head/multimedia/aom/distinfo	Sat Jan 11 00:35:27 2020	(r522621)
@@ -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

Added: head/multimedia/aom/files/patch-aom__dsp_vmaf.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/aom/files/patch-aom__dsp_vmaf.c	Sat Jan 11 00:35:27 2020	(r522621)
@@ -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"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001110035.00B0ZRel078663>