pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/multimedia/ffmpeg4



Module Name:    pkgsrc
Committed By:   nia
Date:           Mon May 17 12:19:07 UTC 2021

Modified Files:
        pkgsrc/multimedia/ffmpeg4: Makefile options.mk

Log Message:
ffmpeg4: build with dav1d support for decoding AV1

results in significantly lower CPU usage when decoding the reference
AV1 videos on my x250

bump PKGREVISION


To generate a diff of this commit:
cvs rdiff -u -r1.50 -r1.51 pkgsrc/multimedia/ffmpeg4/Makefile
cvs rdiff -u -r1.16 -r1.17 pkgsrc/multimedia/ffmpeg4/options.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/multimedia/ffmpeg4/Makefile
diff -u pkgsrc/multimedia/ffmpeg4/Makefile:1.50 pkgsrc/multimedia/ffmpeg4/Makefile:1.51
--- pkgsrc/multimedia/ffmpeg4/Makefile:1.50     Fri May  7 11:40:11 2021
+++ pkgsrc/multimedia/ffmpeg4/Makefile  Mon May 17 12:19:07 2021
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.50 2021/05/07 11:40:11 rin Exp $
+# $NetBSD: Makefile,v 1.51 2021/05/17 12:19:07 nia Exp $
 
 PKGNAME=       ${DISTNAME:S/ffmpeg/ffmpeg4/}
-PKGREVISION=   4
+PKGREVISION=   5
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
 HOMEPAGE=      https://ffmpeg.org/
 COMMENT=       Decoding, encoding and streaming software (v4.x)

Index: pkgsrc/multimedia/ffmpeg4/options.mk
diff -u pkgsrc/multimedia/ffmpeg4/options.mk:1.16 pkgsrc/multimedia/ffmpeg4/options.mk:1.17
--- pkgsrc/multimedia/ffmpeg4/options.mk:1.16   Sat Sep 12 00:45:22 2020
+++ pkgsrc/multimedia/ffmpeg4/options.mk        Mon May 17 12:19:07 2021
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.16 2020/09/12 00:45:22 manu Exp $
+# $NetBSD: options.mk,v 1.17 2021/05/17 12:19:07 nia Exp $
 
 # Global and legacy options
 
@@ -60,9 +60,12 @@ CONFIGURE_ARGS+=     --disable-libass
 .if !empty(PKG_OPTIONS:Mav1)
 CONFIGURE_ARGS+=       --enable-libaom
 BUILDLINK_API_DEPENDS.libaom+= libaom>=1.0.0nb1
+CONFIGURE_ARGS+=       --enable-libdav1d
 .include "../../multimedia/libaom/buildlink3.mk"
+.include "../../multimedia/dav1d/buildlink3.mk"
 .else
 CONFIGURE_ARGS+=       --disable-libaom
+CONFIGURE_ARGS+=       --disable-libdav1d
 .endif
 
 # doc option



Home | Main Index | Thread Index | Old Index