diff options
35 files changed, 231 insertions, 48 deletions
diff --git a/emulators/virtualbox-ose/Makefile b/emulators/virtualbox-ose/Makefile index c4b35644bb5a..b51fea84e201 100644 --- a/emulators/virtualbox-ose/Makefile +++ b/emulators/virtualbox-ose/Makefile @@ -3,6 +3,7 @@ PORTNAME= virtualbox-ose DISTVERSION= 4.3.34 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= http://download.virtualbox.org/virtualbox/${DISTVERSION}/ \ http://tmp.chruetertee.ch/ \ diff --git a/games/openbor/Makefile b/games/openbor/Makefile index 34fadccf0d07..0de8b8c70d7c 100644 --- a/games/openbor/Makefile +++ b/games/openbor/Makefile @@ -2,7 +2,7 @@ PORTNAME= openbor PORTVERSION= 3.0.r4163 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= LOCAL/jbeich \ https://svn.code.sf.net/p/${PORTNAME}/engine/engine/:svn diff --git a/graphics/gd/Makefile b/graphics/gd/Makefile index 07b3374881eb..cafc0cf11eed 100644 --- a/graphics/gd/Makefile +++ b/graphics/gd/Makefile @@ -3,7 +3,7 @@ PORTNAME= libgd PORTVERSION= 2.1.0 -PORTREVISION?= 6 +PORTREVISION?= 7 PORTEPOCH= 1 CATEGORIES+= graphics MASTER_SITES= https://bitbucket.org/libgd/gd-libgd/downloads/ \ diff --git a/graphics/php5-gd/Makefile b/graphics/php5-gd/Makefile index 2972d3162575..e4ad86b5221c 100644 --- a/graphics/php5-gd/Makefile +++ b/graphics/php5-gd/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre <ale@FreeBSD.org> # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= graphics MASTERDIR= ${.CURDIR}/../../lang/php5 diff --git a/graphics/php55-gd/Makefile b/graphics/php55-gd/Makefile index 6d549ce17dce..624b80b64de9 100644 --- a/graphics/php55-gd/Makefile +++ b/graphics/php55-gd/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre <ale@FreeBSD.org> # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= graphics MASTERDIR= ${.CURDIR}/../../lang/php55 diff --git a/graphics/php56-gd/Makefile b/graphics/php56-gd/Makefile index 4746215748f7..4979a92bb137 100644 --- a/graphics/php56-gd/Makefile +++ b/graphics/php56-gd/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre <ale@FreeBSD.org> # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= graphics MASTERDIR= ${.CURDIR}/../../lang/php56 diff --git a/mail/thunderbird/Makefile b/mail/thunderbird/Makefile index 52db2e5e93d0..d2e55189f9e8 100644 --- a/mail/thunderbird/Makefile +++ b/mail/thunderbird/Makefile @@ -3,6 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 38.3.0 +PORTREVISION= 1 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source diff --git a/multimedia/avidemux/Makefile b/multimedia/avidemux/Makefile index b136f8d02bdb..8676d941e44b 100644 --- a/multimedia/avidemux/Makefile +++ b/multimedia/avidemux/Makefile @@ -6,7 +6,7 @@ PORTNAME= avidemux PORTVERSION= ${AVIDEMUX_VERSION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= multimedia MAINTAINER= multimedia@FreeBSD.org diff --git a/multimedia/ffmpeg/Makefile b/multimedia/ffmpeg/Makefile index 5265861db991..4113b5de9ced 100644 --- a/multimedia/ffmpeg/Makefile +++ b/multimedia/ffmpeg/Makefile @@ -3,6 +3,7 @@ PORTNAME= ffmpeg PORTVERSION= 2.8.2 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= multimedia audio ipv6 net MASTER_SITES= http://ffmpeg.org/releases/ diff --git a/multimedia/ffmpeg/files/patch-libavcodec-libvpxenc.c b/multimedia/ffmpeg/files/patch-libavcodec-libvpxenc.c new file mode 100644 index 000000000000..3d27b8a1d3cd --- /dev/null +++ b/multimedia/ffmpeg/files/patch-libavcodec-libvpxenc.c @@ -0,0 +1,39 @@ +commit 6540fe0 +Author: James Zern <jzern@google.com> +Date: Mon Oct 19 22:44:11 2015 -0700 + + libvpxenc: remove some unused ctrl id mappings + + VP8E_UPD_ENTROPY, VP8E_UPD_REFERENCE, VP8E_USE_REFERENCE were removed + from libvpx and the remaining values were never used here + + Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> + Signed-off-by: James Zern <jzern@google.com> +--- + libavcodec/libvpxenc.c | 8 -------- + 1 file changed, 8 deletions(-) + +diff --git libavcodec/libvpxenc.c libavcodec/libvpxenc.c +index 5f39783..992122c 100644 +--- libavcodec/libvpxenc.c ++++ libavcodec/libvpxenc.c +@@ -104,19 +104,11 @@ typedef struct VP8EncoderContext { + + /** String mappings for enum vp8e_enc_control_id */ + static const char *const ctlidstr[] = { +- [VP8E_UPD_ENTROPY] = "VP8E_UPD_ENTROPY", +- [VP8E_UPD_REFERENCE] = "VP8E_UPD_REFERENCE", +- [VP8E_USE_REFERENCE] = "VP8E_USE_REFERENCE", +- [VP8E_SET_ROI_MAP] = "VP8E_SET_ROI_MAP", +- [VP8E_SET_ACTIVEMAP] = "VP8E_SET_ACTIVEMAP", +- [VP8E_SET_SCALEMODE] = "VP8E_SET_SCALEMODE", + [VP8E_SET_CPUUSED] = "VP8E_SET_CPUUSED", + [VP8E_SET_ENABLEAUTOALTREF] = "VP8E_SET_ENABLEAUTOALTREF", + [VP8E_SET_NOISE_SENSITIVITY] = "VP8E_SET_NOISE_SENSITIVITY", +- [VP8E_SET_SHARPNESS] = "VP8E_SET_SHARPNESS", + [VP8E_SET_STATIC_THRESHOLD] = "VP8E_SET_STATIC_THRESHOLD", + [VP8E_SET_TOKEN_PARTITIONS] = "VP8E_SET_TOKEN_PARTITIONS", +- [VP8E_GET_LAST_QUANTIZER] = "VP8E_GET_LAST_QUANTIZER", + [VP8E_SET_ARNR_MAXFRAMES] = "VP8E_SET_ARNR_MAXFRAMES", + [VP8E_SET_ARNR_STRENGTH] = "VP8E_SET_ARNR_STRENGTH", + [VP8E_SET_ARNR_TYPE] = "VP8E_SET_ARNR_TYPE", diff --git a/multimedia/ffmpeg0/Makefile b/multimedia/ffmpeg0/Makefile index dc5317e3f963..3903e75a9f02 100644 --- a/multimedia/ffmpeg0/Makefile +++ b/multimedia/ffmpeg0/Makefile @@ -3,6 +3,7 @@ PORTNAME= ffmpeg PORTVERSION= 0.7.17 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= multimedia audio ipv6 net MASTER_SITES= http://ffmpeg.org/releases/ diff --git a/multimedia/ffmpeg0/files/patch-libavcodec-libvpxenc.c b/multimedia/ffmpeg0/files/patch-libavcodec-libvpxenc.c new file mode 100644 index 000000000000..26cc58e21418 --- /dev/null +++ b/multimedia/ffmpeg0/files/patch-libavcodec-libvpxenc.c @@ -0,0 +1,39 @@ +commit 6540fe0 +Author: James Zern <jzern@google.com> +Date: Mon Oct 19 22:44:11 2015 -0700 + + libvpxenc: remove some unused ctrl id mappings + + VP8E_UPD_ENTROPY, VP8E_UPD_REFERENCE, VP8E_USE_REFERENCE were removed + from libvpx and the remaining values were never used here + + Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> + Signed-off-by: James Zern <jzern@google.com> +--- + libavcodec/libvpxenc.c | 8 -------- + 1 file changed, 8 deletions(-) + +diff --git libavcodec/libvpxenc.c libavcodec/libvpxenc.c +index 5f39783..992122c 100644 +--- libavcodec/libvpxenc.c ++++ libavcodec/libvpxenc.c +@@ -104,19 +104,11 @@ typedef struct VP8EncoderContext { + + /** String mappings for enum vp8e_enc_control_id */ + static const char *ctlidstr[] = { +- [VP8E_UPD_ENTROPY] = "VP8E_UPD_ENTROPY", +- [VP8E_UPD_REFERENCE] = "VP8E_UPD_REFERENCE", +- [VP8E_USE_REFERENCE] = "VP8E_USE_REFERENCE", +- [VP8E_SET_ROI_MAP] = "VP8E_SET_ROI_MAP", +- [VP8E_SET_ACTIVEMAP] = "VP8E_SET_ACTIVEMAP", +- [VP8E_SET_SCALEMODE] = "VP8E_SET_SCALEMODE", + [VP8E_SET_CPUUSED] = "VP8E_SET_CPUUSED", + [VP8E_SET_ENABLEAUTOALTREF] = "VP8E_SET_ENABLEAUTOALTREF", + [VP8E_SET_NOISE_SENSITIVITY] = "VP8E_SET_NOISE_SENSITIVITY", +- [VP8E_SET_SHARPNESS] = "VP8E_SET_SHARPNESS", + [VP8E_SET_STATIC_THRESHOLD] = "VP8E_SET_STATIC_THRESHOLD", + [VP8E_SET_TOKEN_PARTITIONS] = "VP8E_SET_TOKEN_PARTITIONS", +- [VP8E_GET_LAST_QUANTIZER] = "VP8E_GET_LAST_QUANTIZER", + [VP8E_SET_ARNR_MAXFRAMES] = "VP8E_SET_ARNR_MAXFRAMES", + [VP8E_SET_ARNR_STRENGTH] = "VP8E_SET_ARNR_STRENGTH", + [VP8E_SET_ARNR_TYPE] = "VP8E_SET_ARNR_TYPE", diff --git a/multimedia/gstreamer-plugins-vp8/Makefile b/multimedia/gstreamer-plugins-vp8/Makefile index 2e426494d599..b05f6cae27ca 100644 --- a/multimedia/gstreamer-plugins-vp8/Makefile +++ b/multimedia/gstreamer-plugins-vp8/Makefile @@ -1,7 +1,7 @@ # Created by: Koop Mast <kwm@FreeBSD.org> # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= multimedia COMMENT= Gstreamer vp8 codec plugin diff --git a/multimedia/gstreamer1-plugins-vpx/Makefile b/multimedia/gstreamer1-plugins-vpx/Makefile index 379ee383b963..626be2af522f 100644 --- a/multimedia/gstreamer1-plugins-vpx/Makefile +++ b/multimedia/gstreamer1-plugins-vpx/Makefile @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= multimedia COMMENT= Gstreamer vp8 codec plugin diff --git a/multimedia/handbrake/Makefile b/multimedia/handbrake/Makefile index 1f3103645a39..7417344f7cba 100644 --- a/multimedia/handbrake/Makefile +++ b/multimedia/handbrake/Makefile @@ -3,7 +3,7 @@ PORTNAME= handbrake PORTVERSION= 0.10.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia MASTER_SITES= http://download.handbrake.fr/releases/${PORTVERSION}/ \ http://download.handbrake.fr/handbrake/contrib/:contrib \ diff --git a/multimedia/handbrake/files/patch-contrib_ffmpeg_A90-libvpx-1.5.0.patch b/multimedia/handbrake/files/patch-contrib_ffmpeg_A90-libvpx-1.5.0.patch new file mode 100644 index 000000000000..ae79f99920df --- /dev/null +++ b/multimedia/handbrake/files/patch-contrib_ffmpeg_A90-libvpx-1.5.0.patch @@ -0,0 +1,42 @@ +--- /dev/null 1970-01-01 00:00:00 UTC ++++ contrib/ffmpeg/A90-libvpx-1.5.0.patch +@@ -0,0 +1,39 @@ ++commit 6540fe0 ++Author: James Zern <jzern@google.com> ++Date: Mon Oct 19 22:44:11 2015 -0700 ++ ++ libvpxenc: remove some unused ctrl id mappings ++ ++ VP8E_UPD_ENTROPY, VP8E_UPD_REFERENCE, VP8E_USE_REFERENCE were removed ++ from libvpx and the remaining values were never used here ++ ++ Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> ++ Signed-off-by: James Zern <jzern@google.com> ++--- ++ libavcodec/libvpxenc.c | 8 -------- ++ 1 file changed, 8 deletions(-) ++ ++diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c ++index 5f39783..992122c 100644 ++--- a/libavcodec/libvpxenc.c +++++ b/libavcodec/libvpxenc.c ++@@ -104,19 +104,11 @@ typedef struct VP8EncoderContext { ++ ++ /** String mappings for enum vp8e_enc_control_id */ ++ static const char *const ctlidstr[] = { ++- [VP8E_UPD_ENTROPY] = "VP8E_UPD_ENTROPY", ++- [VP8E_UPD_REFERENCE] = "VP8E_UPD_REFERENCE", ++- [VP8E_USE_REFERENCE] = "VP8E_USE_REFERENCE", ++- [VP8E_SET_ROI_MAP] = "VP8E_SET_ROI_MAP", ++- [VP8E_SET_ACTIVEMAP] = "VP8E_SET_ACTIVEMAP", ++- [VP8E_SET_SCALEMODE] = "VP8E_SET_SCALEMODE", ++ [VP8E_SET_CPUUSED] = "VP8E_SET_CPUUSED", ++ [VP8E_SET_ENABLEAUTOALTREF] = "VP8E_SET_ENABLEAUTOALTREF", ++ [VP8E_SET_NOISE_SENSITIVITY] = "VP8E_SET_NOISE_SENSITIVITY", ++- [VP8E_SET_SHARPNESS] = "VP8E_SET_SHARPNESS", ++ [VP8E_SET_STATIC_THRESHOLD] = "VP8E_SET_STATIC_THRESHOLD", ++ [VP8E_SET_TOKEN_PARTITIONS] = "VP8E_SET_TOKEN_PARTITIONS", ++- [VP8E_GET_LAST_QUANTIZER] = "VP8E_GET_LAST_QUANTIZER", ++ [VP8E_SET_ARNR_MAXFRAMES] = "VP8E_SET_ARNR_MAXFRAMES", ++ [VP8E_SET_ARNR_STRENGTH] = "VP8E_SET_ARNR_STRENGTH", ++ [VP8E_SET_ARNR_TYPE] = "VP8E_SET_ARNR_TYPE", diff --git a/multimedia/libav/Makefile b/multimedia/libav/Makefile index cac231c1093c..74910ab44ff3 100644 --- a/multimedia/libav/Makefile +++ b/multimedia/libav/Makefile @@ -2,7 +2,7 @@ PORTNAME= libav PORTVERSION= 11.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia audio ipv6 net MASTER_SITES= http://libav.org/releases/ diff --git a/multimedia/libav/files/patch-libavcodec_libvpxenc.c b/multimedia/libav/files/patch-libavcodec_libvpxenc.c new file mode 100644 index 000000000000..3d27b8a1d3cd --- /dev/null +++ b/multimedia/libav/files/patch-libavcodec_libvpxenc.c @@ -0,0 +1,39 @@ +commit 6540fe0 +Author: James Zern <jzern@google.com> +Date: Mon Oct 19 22:44:11 2015 -0700 + + libvpxenc: remove some unused ctrl id mappings + + VP8E_UPD_ENTROPY, VP8E_UPD_REFERENCE, VP8E_USE_REFERENCE were removed + from libvpx and the remaining values were never used here + + Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> + Signed-off-by: James Zern <jzern@google.com> +--- + libavcodec/libvpxenc.c | 8 -------- + 1 file changed, 8 deletions(-) + +diff --git libavcodec/libvpxenc.c libavcodec/libvpxenc.c +index 5f39783..992122c 100644 +--- libavcodec/libvpxenc.c ++++ libavcodec/libvpxenc.c +@@ -104,19 +104,11 @@ typedef struct VP8EncoderContext { + + /** String mappings for enum vp8e_enc_control_id */ + static const char *const ctlidstr[] = { +- [VP8E_UPD_ENTROPY] = "VP8E_UPD_ENTROPY", +- [VP8E_UPD_REFERENCE] = "VP8E_UPD_REFERENCE", +- [VP8E_USE_REFERENCE] = "VP8E_USE_REFERENCE", +- [VP8E_SET_ROI_MAP] = "VP8E_SET_ROI_MAP", +- [VP8E_SET_ACTIVEMAP] = "VP8E_SET_ACTIVEMAP", +- [VP8E_SET_SCALEMODE] = "VP8E_SET_SCALEMODE", + [VP8E_SET_CPUUSED] = "VP8E_SET_CPUUSED", + [VP8E_SET_ENABLEAUTOALTREF] = "VP8E_SET_ENABLEAUTOALTREF", + [VP8E_SET_NOISE_SENSITIVITY] = "VP8E_SET_NOISE_SENSITIVITY", +- [VP8E_SET_SHARPNESS] = "VP8E_SET_SHARPNESS", + [VP8E_SET_STATIC_THRESHOLD] = "VP8E_SET_STATIC_THRESHOLD", + [VP8E_SET_TOKEN_PARTITIONS] = "VP8E_SET_TOKEN_PARTITIONS", +- [VP8E_GET_LAST_QUANTIZER] = "VP8E_GET_LAST_QUANTIZER", + [VP8E_SET_ARNR_MAXFRAMES] = "VP8E_SET_ARNR_MAXFRAMES", + [VP8E_SET_ARNR_STRENGTH] = "VP8E_SET_ARNR_STRENGTH", + [VP8E_SET_ARNR_TYPE] = "VP8E_SET_ARNR_TYPE", diff --git a/multimedia/libvpx/Makefile b/multimedia/libvpx/Makefile index 47f51369a828..11dd75750be5 100644 --- a/multimedia/libvpx/Makefile +++ b/multimedia/libvpx/Makefile @@ -3,9 +3,7 @@ PORTNAME= libvpx DISTVERSIONPREFIX= v -DISTVERSION= 1.4.0-488 # tracking www/firefox -DISTVERSIONSUFFIX= -ge67d45d -PORTREVISION= 1 +DISTVERSION= 1.5.0 CATEGORIES= multimedia MAINTAINER= ashish@FreeBSD.org diff --git a/multimedia/libvpx/distinfo b/multimedia/libvpx/distinfo index fa61d55d0988..5f64225051e4 100644 --- a/multimedia/libvpx/distinfo +++ b/multimedia/libvpx/distinfo @@ -1,2 +1,2 @@ -SHA256 (webmproject-libvpx-v1.4.0-488-ge67d45d_GH0.tar.bz2) = 9ee182a81d866d92021e4cb11bc81cf0bee96d5bb53c2122eb4d3cc6b86b712b -SIZE (webmproject-libvpx-v1.4.0-488-ge67d45d_GH0.tar.bz2) = 2324228 +SHA256 (webmproject-libvpx-v1.5.0_GH0.tar.bz2) = f199b03b67042e8d94a3ae8bc841fb82b6a8430bdf3965aeeaafe8245bcfa699 +SIZE (webmproject-libvpx-v1.5.0_GH0.tar.bz2) = 2430835 diff --git a/multimedia/libvpx/files/patch-configure b/multimedia/libvpx/files/patch-configure index d858d04efdeb..8584aedece18 100644 --- a/multimedia/libvpx/files/patch-configure +++ b/multimedia/libvpx/files/patch-configure @@ -1,9 +1,9 @@ --- configure.orig +++ configure -@@ -148,6 +148,10 @@ all_platforms="${all_platforms} x86_64-w - all_platforms="${all_platforms} x86_64-win64-vs10" +@@ -153,6 +153,10 @@ all_platforms="${all_platforms} x86_64-w all_platforms="${all_platforms} x86_64-win64-vs11" all_platforms="${all_platforms} x86_64-win64-vs12" + all_platforms="${all_platforms} x86_64-win64-vs14" +all_platforms="${all_platforms} ia64-linux-gcc" +all_platforms="${all_platforms} ppc32-linux-gcc" +all_platforms="${all_platforms} ppc64-linux-gcc" diff --git a/multimedia/libvpx/files/patch-vp9_common_vp9__filter.c b/multimedia/libvpx/files/patch-vp9_common_vp9__filter.c deleted file mode 100644 index cf6235d6a545..000000000000 --- a/multimedia/libvpx/files/patch-vp9_common_vp9__filter.c +++ /dev/null @@ -1,27 +0,0 @@ -commit 33b3953c548a20c0aee705657df0440a740c28b7 -Author: James Zern <jzern@google.com> -Date: Thu Jun 11 15:12:22 2015 -0700 - - vp9_filter: restore vp9_bilinear_filters alignment - - the declaration containing the alignment in vp9_filter.h was removed in: - eb88b17 Make vp9 subpixel match vp8 - - fixes a crash in 32-bit builds - - Change-Id: I9a97e6b4e8e94698e43ff79d0d8bb85043b73c61 - -diff --git a/vp9/common/vp9_filter.c b/vp9/common/vp9_filter.c -index afcdf22..b256d4a 100644 ---- vp9/common/vp9_filter.c -+++ vp9/common/vp9_filter.c -@@ -12,7 +12,8 @@ - - #include "vp9/common/vp9_filter.h" - --const InterpKernel vp9_bilinear_filters[SUBPEL_SHIFTS] = { -+DECLARE_ALIGNED(256, const InterpKernel, -+ vp9_bilinear_filters[SUBPEL_SHIFTS]) = { - { 0, 0, 0, 128, 0, 0, 0, 0 }, - { 0, 0, 0, 120, 8, 0, 0, 0 }, - { 0, 0, 0, 112, 16, 0, 0, 0 }, diff --git a/multimedia/libvpx/pkg-plist b/multimedia/libvpx/pkg-plist index 099df59fd64a..f698419fc268 100644 --- a/multimedia/libvpx/pkg-plist +++ b/multimedia/libvpx/pkg-plist @@ -11,7 +11,7 @@ include/vpx/vpx_image.h include/vpx/vpx_integer.h lib/libvpx.a %%SHARED%%lib/libvpx.so -%%SHARED%%lib/libvpx.so.2 -%%SHARED%%lib/libvpx.so.2.0 -%%SHARED%%lib/libvpx.so.2.0.0 +%%SHARED%%lib/libvpx.so.3 +%%SHARED%%lib/libvpx.so.3.0 +%%SHARED%%lib/libvpx.so.3.0.0 libdata/pkgconfig/vpx.pc diff --git a/multimedia/mplayer/Makefile b/multimedia/mplayer/Makefile index e5c08970abc0..5e66dfad564c 100644 --- a/multimedia/mplayer/Makefile +++ b/multimedia/mplayer/Makefile @@ -3,7 +3,7 @@ PORTNAME= mplayer PORTVERSION= ${MPLAYER_PORT_VERSION} -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= multimedia audio MAINTAINER= riggs@FreeBSD.org diff --git a/multimedia/mplayer/files/patch-ffmpeg_libavcodec_libvpxenc.c b/multimedia/mplayer/files/patch-ffmpeg_libavcodec_libvpxenc.c new file mode 100644 index 000000000000..898128c286ce --- /dev/null +++ b/multimedia/mplayer/files/patch-ffmpeg_libavcodec_libvpxenc.c @@ -0,0 +1,39 @@ +commit 6540fe0 +Author: James Zern <jzern@google.com> +Date: Mon Oct 19 22:44:11 2015 -0700 + + libvpxenc: remove some unused ctrl id mappings + + VP8E_UPD_ENTROPY, VP8E_UPD_REFERENCE, VP8E_USE_REFERENCE were removed + from libvpx and the remaining values were never used here + + Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> + Signed-off-by: James Zern <jzern@google.com> +--- + libavcodec/libvpxenc.c | 8 -------- + 1 file changed, 8 deletions(-) + +diff --git ffmpeg/libavcodec/libvpxenc.c ffmpeg/libavcodec/libvpxenc.c +index 5f39783..992122c 100644 +--- ffmpeg/libavcodec/libvpxenc.c ++++ ffmpeg/libavcodec/libvpxenc.c +@@ -104,19 +104,11 @@ typedef struct VP8EncoderContext { + + /** String mappings for enum vp8e_enc_control_id */ + static const char *const ctlidstr[] = { +- [VP8E_UPD_ENTROPY] = "VP8E_UPD_ENTROPY", +- [VP8E_UPD_REFERENCE] = "VP8E_UPD_REFERENCE", +- [VP8E_USE_REFERENCE] = "VP8E_USE_REFERENCE", +- [VP8E_SET_ROI_MAP] = "VP8E_SET_ROI_MAP", +- [VP8E_SET_ACTIVEMAP] = "VP8E_SET_ACTIVEMAP", +- [VP8E_SET_SCALEMODE] = "VP8E_SET_SCALEMODE", + [VP8E_SET_CPUUSED] = "VP8E_SET_CPUUSED", + [VP8E_SET_ENABLEAUTOALTREF] = "VP8E_SET_ENABLEAUTOALTREF", + [VP8E_SET_NOISE_SENSITIVITY] = "VP8E_SET_NOISE_SENSITIVITY", +- [VP8E_SET_SHARPNESS] = "VP8E_SET_SHARPNESS", + [VP8E_SET_STATIC_THRESHOLD] = "VP8E_SET_STATIC_THRESHOLD", + [VP8E_SET_TOKEN_PARTITIONS] = "VP8E_SET_TOKEN_PARTITIONS", +- [VP8E_GET_LAST_QUANTIZER] = "VP8E_GET_LAST_QUANTIZER", + [VP8E_SET_ARNR_MAXFRAMES] = "VP8E_SET_ARNR_MAXFRAMES", + [VP8E_SET_ARNR_STRENGTH] = "VP8E_SET_ARNR_STRENGTH", + [VP8E_SET_ARNR_TYPE] = "VP8E_SET_ARNR_TYPE", diff --git a/net-im/qTox/Makefile b/net-im/qTox/Makefile index 96259e4a342e..a3f4bfde59a1 100644 --- a/net-im/qTox/Makefile +++ b/net-im/qTox/Makefile @@ -3,7 +3,7 @@ PORTNAME= qTox PORTVERSION= 0.150614 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im net-p2p MAINTAINER= yuri@rawbw.com diff --git a/net-im/tox/Makefile b/net-im/tox/Makefile index b0b77979e787..6aef0dacdfe9 100644 --- a/net-im/tox/Makefile +++ b/net-im/tox/Makefile @@ -3,6 +3,7 @@ PORTNAME= toxcore PORTVERSION= 0.151112 +PORTREVISION= 1 CATEGORIES= net-im net-p2p MAINTAINER= thierry@FreeBSD.org diff --git a/net-im/toxic/Makefile b/net-im/toxic/Makefile index 7fc4a20aa68c..a57f729f9335 100644 --- a/net-im/toxic/Makefile +++ b/net-im/toxic/Makefile @@ -3,7 +3,7 @@ PORTNAME= toxic PORTVERSION= 0.7.0.151113 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im MAINTAINER= thierry@FreeBSD.org diff --git a/net-im/uTox/Makefile b/net-im/uTox/Makefile index 8d5989a2d3de..2c8178ade104 100644 --- a/net-im/uTox/Makefile +++ b/net-im/uTox/Makefile @@ -2,6 +2,7 @@ PORTNAME= uTox DISTVERSION= 0.4.2.20151107 +PORTREVISION= 1 CATEGORIES= net-im net-p2p MAINTAINER= fidaj@ukr.net diff --git a/net/mediastreamer/Makefile b/net/mediastreamer/Makefile index 200bd46df22c..80b3112097da 100644 --- a/net/mediastreamer/Makefile +++ b/net/mediastreamer/Makefile @@ -3,6 +3,7 @@ PORTNAME= mediastreamer PORTVERSION= 2.12.0 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= SAVANNAH/linphone/mediastreamer diff --git a/www/firefox-esr/Makefile b/www/firefox-esr/Makefile index 4e803c2f14e4..58c403ece77d 100644 --- a/www/firefox-esr/Makefile +++ b/www/firefox-esr/Makefile @@ -4,6 +4,7 @@ PORTNAME= firefox DISTVERSION= 38.3.0 DISTVERSIONSUFFIX=esr.source +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ diff --git a/www/firefox/Makefile b/www/firefox/Makefile index 32cf0e3a48f9..2b60960d5ad2 100644 --- a/www/firefox/Makefile +++ b/www/firefox/Makefile @@ -4,6 +4,7 @@ PORTNAME= firefox DISTVERSION= 41.0.2 DISTVERSIONSUFFIX=.source +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ diff --git a/www/libxul/Makefile b/www/libxul/Makefile index f36b3a3c9ac4..6616ad4df0b6 100644 --- a/www/libxul/Makefile +++ b/www/libxul/Makefile @@ -3,6 +3,7 @@ PORTNAME= libxul DISTVERSION= 38.3.0 +PORTREVISION= 1 CATEGORIES?= www devel MASTER_SITES= MOZILLA/firefox/releases/${DISTVERSION}esr/source \ MOZILLA/firefox/candidates/${DISTVERSION}esr-candidates/build2/source diff --git a/www/seamonkey/Makefile b/www/seamonkey/Makefile index b6d42a599a0e..6edb87792302 100644 --- a/www/seamonkey/Makefile +++ b/www/seamonkey/Makefile @@ -3,7 +3,7 @@ PORTNAME= seamonkey DISTVERSION= 2.33.1 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES?= www mail news editors irc ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source diff --git a/x11/xpra/Makefile b/x11/xpra/Makefile index af69d1397fd7..8f50fb5f67a5 100644 --- a/x11/xpra/Makefile +++ b/x11/xpra/Makefile @@ -3,6 +3,7 @@ PORTNAME= xpra PORTVERSION= 0.15.7 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= http://xpra.org/src/ |