From owner-svn-ports-branches@freebsd.org Mon Nov 27 17:36:42 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 03FE1DBA7AE; Mon, 27 Nov 2017 17:36:42 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D11917CC09; Mon, 27 Nov 2017 17:36:41 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vARHaekJ067466; Mon, 27 Nov 2017 17:36:40 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vARHaegw067456; Mon, 27 Nov 2017 17:36:40 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201711271736.vARHaegw067456@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 27 Nov 2017 17:36:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r454976 - in branches/2017Q4: mail/thunderbird mail/thunderbird/files www/firefox www/firefox-esr www/firefox-esr/files www/firefox/files www/seamonkey www/seamonkey/files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2017Q4: mail/thunderbird mail/thunderbird/files www/firefox www/firefox-esr www/firefox-esr/files www/firefox/files www/seamonkey www/seamonkey/files X-SVN-Commit-Revision: 454976 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Nov 2017 17:36:42 -0000 Author: jbeich Date: Mon Nov 27 17:36:39 2017 New Revision: 454976 URL: https://svnweb.freebsd.org/changeset/ports/454976 Log: MFH: r453085 r453211 gecko: speed up VP9 decoding on i386 Disable bundled FFmpeg decoders for VP* and FLAC on i386 as those don't support SIMD optimizations due to build issues upstream. More recent versions of those are already provided by multimedia/ffmpeg, anyway. Approved by: ports-secteam (feld) Added: branches/2017Q4/mail/thunderbird/files/patch-bug1412558 - copied, changed from r453085, head/mail/thunderbird/files/patch-bug1412558 branches/2017Q4/www/firefox-esr/files/patch-bug1412558 - copied, changed from r453085, head/www/firefox-esr/files/patch-bug1412558 branches/2017Q4/www/firefox/files/patch-bug1412558 - copied, changed from r453085, head/www/firefox/files/patch-bug1412558 branches/2017Q4/www/seamonkey/files/patch-bug1412558 - copied, changed from r453085, head/www/seamonkey/files/patch-bug1412558 Modified: branches/2017Q4/mail/thunderbird/Makefile branches/2017Q4/www/firefox-esr/Makefile branches/2017Q4/www/firefox/Makefile branches/2017Q4/www/seamonkey/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/mail/thunderbird/Makefile ============================================================================== --- branches/2017Q4/mail/thunderbird/Makefile Mon Nov 27 17:33:28 2017 (r454975) +++ branches/2017Q4/mail/thunderbird/Makefile Mon Nov 27 17:36:39 2017 (r454976) @@ -3,7 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 52.4.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build3/source Copied and modified: branches/2017Q4/mail/thunderbird/files/patch-bug1412558 (from r453085, head/mail/thunderbird/files/patch-bug1412558) ============================================================================== --- head/mail/thunderbird/files/patch-bug1412558 Sat Oct 28 23:47:31 2017 (r453085, copy source) +++ branches/2017Q4/mail/thunderbird/files/patch-bug1412558 Mon Nov 27 17:36:39 2017 (r454976) @@ -2,15 +2,25 @@ diff --git dom/media/flac/FlacDecoder.cpp dom/media/fl index 53fc3c9937f7..b23771ab80fa 100644 --- mozilla/dom/media/flac/FlacDecoder.cpp +++ mozilla/dom/media/flac/FlacDecoder.cpp -@@ -36,7 +36,7 @@ FlacDecoder::CreateStateMachine() - /* static */ bool - FlacDecoder::IsEnabled() +@@ -7,6 +7,7 @@ + #include "FlacDecoder.h" + #include "MediaContainerType.h" + #include "MediaPrefs.h" ++#include "PDMFactory.h" + + namespace mozilla { + +@@ -15,6 +16,10 @@ FlacDecoder::IsEnabled() { --#ifdef MOZ_FFVPX -+#if defined(MOZ_FFMPEG) || defined(MOZ_FFVPX) + #ifdef MOZ_FFVPX return MediaPrefs::FlacEnabled(); ++#elif defined(MOZ_FFMPEG) ++ RefPtr platform = new PDMFactory(); ++ return MediaPrefs::FlacEnabled() && platform->SupportsMimeType(NS_LITERAL_CSTRING("audio/flac"), ++ /* DecoderDoctorDiagnostics* */ nullptr); #else // Until bug 1295886 is fixed. + return false; diff --git media/ffvpx/README_MOZILLA media/ffvpx/README_MOZILLA index 5d3a6037efe0..43144b726a92 100644 --- mozilla/media/ffvpx/README_MOZILLA Modified: branches/2017Q4/www/firefox-esr/Makefile ============================================================================== --- branches/2017Q4/www/firefox-esr/Makefile Mon Nov 27 17:33:28 2017 (r454975) +++ branches/2017Q4/www/firefox-esr/Makefile Mon Nov 27 17:36:39 2017 (r454976) @@ -4,7 +4,7 @@ PORTNAME= firefox DISTVERSION= 52.4.1 DISTVERSIONSUFFIX=esr.source -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ Copied and modified: branches/2017Q4/www/firefox-esr/files/patch-bug1412558 (from r453085, head/www/firefox-esr/files/patch-bug1412558) ============================================================================== --- head/www/firefox-esr/files/patch-bug1412558 Sat Oct 28 23:47:31 2017 (r453085, copy source) +++ branches/2017Q4/www/firefox-esr/files/patch-bug1412558 Mon Nov 27 17:36:39 2017 (r454976) @@ -2,15 +2,25 @@ diff --git dom/media/flac/FlacDecoder.cpp dom/media/fl index 53fc3c9937f7..b23771ab80fa 100644 --- dom/media/flac/FlacDecoder.cpp +++ dom/media/flac/FlacDecoder.cpp -@@ -36,7 +36,7 @@ FlacDecoder::CreateStateMachine() - /* static */ bool - FlacDecoder::IsEnabled() +@@ -7,6 +7,7 @@ + #include "FlacDecoder.h" + #include "MediaContainerType.h" + #include "MediaPrefs.h" ++#include "PDMFactory.h" + + namespace mozilla { + +@@ -15,6 +16,10 @@ FlacDecoder::IsEnabled() { --#ifdef MOZ_FFVPX -+#if defined(MOZ_FFMPEG) || defined(MOZ_FFVPX) + #ifdef MOZ_FFVPX return MediaPrefs::FlacEnabled(); ++#elif defined(MOZ_FFMPEG) ++ RefPtr platform = new PDMFactory(); ++ return MediaPrefs::FlacEnabled() && platform->SupportsMimeType(NS_LITERAL_CSTRING("audio/flac"), ++ /* DecoderDoctorDiagnostics* */ nullptr); #else // Until bug 1295886 is fixed. + return false; diff --git media/ffvpx/README_MOZILLA media/ffvpx/README_MOZILLA index 5d3a6037efe0..43144b726a92 100644 --- media/ffvpx/README_MOZILLA Modified: branches/2017Q4/www/firefox/Makefile ============================================================================== --- branches/2017Q4/www/firefox/Makefile Mon Nov 27 17:33:28 2017 (r454975) +++ branches/2017Q4/www/firefox/Makefile Mon Nov 27 17:36:39 2017 (r454976) @@ -4,7 +4,7 @@ PORTNAME= firefox DISTVERSION= 56.0.2 DISTVERSIONSUFFIX=.source -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ Copied and modified: branches/2017Q4/www/firefox/files/patch-bug1412558 (from r453085, head/www/firefox/files/patch-bug1412558) ============================================================================== --- head/www/firefox/files/patch-bug1412558 Sat Oct 28 23:47:31 2017 (r453085, copy source) +++ branches/2017Q4/www/firefox/files/patch-bug1412558 Mon Nov 27 17:36:39 2017 (r454976) @@ -2,15 +2,25 @@ diff --git dom/media/flac/FlacDecoder.cpp dom/media/fl index 53fc3c9937f7..b23771ab80fa 100644 --- dom/media/flac/FlacDecoder.cpp +++ dom/media/flac/FlacDecoder.cpp -@@ -36,7 +36,7 @@ FlacDecoder::CreateStateMachine() - /* static */ bool - FlacDecoder::IsEnabled() +@@ -7,6 +7,7 @@ + #include "FlacDecoder.h" + #include "MediaContainerType.h" + #include "MediaPrefs.h" ++#include "PDMFactory.h" + + namespace mozilla { + +@@ -15,6 +16,10 @@ FlacDecoder::IsEnabled() { --#ifdef MOZ_FFVPX -+#if defined(MOZ_FFMPEG) || defined(MOZ_FFVPX) + #ifdef MOZ_FFVPX return MediaPrefs::FlacEnabled(); ++#elif defined(MOZ_FFMPEG) ++ RefPtr platform = new PDMFactory(); ++ return MediaPrefs::FlacEnabled() && platform->SupportsMimeType(NS_LITERAL_CSTRING("audio/flac"), ++ /* DecoderDoctorDiagnostics* */ nullptr); #else // Until bug 1295886 is fixed. + return false; diff --git media/ffvpx/README_MOZILLA media/ffvpx/README_MOZILLA index 5d3a6037efe0..43144b726a92 100644 --- media/ffvpx/README_MOZILLA Modified: branches/2017Q4/www/seamonkey/Makefile ============================================================================== --- branches/2017Q4/www/seamonkey/Makefile Mon Nov 27 17:33:28 2017 (r454975) +++ branches/2017Q4/www/seamonkey/Makefile Mon Nov 27 17:36:39 2017 (r454976) @@ -3,7 +3,7 @@ PORTNAME= seamonkey DISTVERSION= 2.49.1 -PORTREVISION= 1 +PORTREVISION= 2 MOZILLA_VER= 52 # above + 3 CATEGORIES?= www mail news editors irc ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ Copied and modified: branches/2017Q4/www/seamonkey/files/patch-bug1412558 (from r453085, head/www/seamonkey/files/patch-bug1412558) ============================================================================== --- head/www/seamonkey/files/patch-bug1412558 Sat Oct 28 23:47:31 2017 (r453085, copy source) +++ branches/2017Q4/www/seamonkey/files/patch-bug1412558 Mon Nov 27 17:36:39 2017 (r454976) @@ -2,15 +2,25 @@ diff --git dom/media/flac/FlacDecoder.cpp dom/media/fl index 53fc3c9937f7..b23771ab80fa 100644 --- mozilla/dom/media/flac/FlacDecoder.cpp +++ mozilla/dom/media/flac/FlacDecoder.cpp -@@ -36,7 +36,7 @@ FlacDecoder::CreateStateMachine() - /* static */ bool - FlacDecoder::IsEnabled() +@@ -7,6 +7,7 @@ + #include "FlacDecoder.h" + #include "MediaContainerType.h" + #include "MediaPrefs.h" ++#include "PDMFactory.h" + + namespace mozilla { + +@@ -15,6 +16,10 @@ FlacDecoder::IsEnabled() { --#ifdef MOZ_FFVPX -+#if defined(MOZ_FFMPEG) || defined(MOZ_FFVPX) + #ifdef MOZ_FFVPX return MediaPrefs::FlacEnabled(); ++#elif defined(MOZ_FFMPEG) ++ RefPtr platform = new PDMFactory(); ++ return MediaPrefs::FlacEnabled() && platform->SupportsMimeType(NS_LITERAL_CSTRING("audio/flac"), ++ /* DecoderDoctorDiagnostics* */ nullptr); #else // Until bug 1295886 is fixed. + return false; diff --git media/ffvpx/README_MOZILLA media/ffvpx/README_MOZILLA index 5d3a6037efe0..43144b726a92 100644 --- mozilla/media/ffvpx/README_MOZILLA