Here is an update to libvpx 1.10.0.

2021-03-09 v1.10.0 "Ruddy Duck"

  This maintenance release adds support for darwin20 and new codec controls, as
  well as numerous bug fixes.

  - Upgrading:

    New codec control is added to disable loopfilter for VP9.

    New encoder control is added to disable feature to increase Q on overshoot
    detection for CBR.

    Configure support for darwin20 is added.

    New codec control is added for VP9 rate control. The control ID of this
    interface is VP9E_SET_EXTERNAL_RATE_CONTROL. To make VP9 use a customized
    external rate control model, users will have to implement each callback
    function in vpx_rc_funcs_t and register them using libvpx API
    vpx_codec_control_() with the control ID.

  - Enhancement:

    Use -std=gnu++11 instead of -std=c++11 for c++ files.

  - Bug fixes:

    Override assembler with --as option of configure for MSVS.

    Fix several compilation issues with gcc 4.8.5.

    Fix to resetting rate control for temporal layers.

    Fix to the rate control stats of SVC example encoder when number of spatial
    layers is 1.

    Fix to reusing motion vectors from the base spatial layer in SVC.

    2 pass related flags removed from SVC example encoder.


Index: Makefile
===================================================================
RCS file: /home/cvs/ports/multimedia/libvpx/Makefile,v
retrieving revision 1.44
diff -u -p -u -p -r1.44 Makefile
--- Makefile    3 Oct 2020 13:19:36 -0000       1.44
+++ Makefile    30 Mar 2021 00:22:17 -0000
@@ -2,14 +2,14 @@
 
 COMMENT=       Google VP8/VP9 video codec
 
-VER=           1.9.0
+VER=           1.10.0
 CATEGORIES=    multimedia
 EPOCH=         0
 GH_ACCOUNT=    webmproject
 GH_PROJECT=    libvpx
 GH_TAGNAME=    v${VER}
 
-SHARED_LIBS=   vpx     12.0
+SHARED_LIBS=   vpx     13.0
 
 HOMEPAGE=      https://www.webmproject.org/
 
Index: distinfo
===================================================================
RCS file: /home/cvs/ports/multimedia/libvpx/distinfo,v
retrieving revision 1.18
diff -u -p -u -p -r1.18 distinfo
--- distinfo    3 Oct 2020 13:19:36 -0000       1.18
+++ distinfo    30 Mar 2021 00:14:22 -0000
@@ -1,2 +1,2 @@
-SHA256 (libvpx-1.9.0.tar.gz) = 0nnBDkuTFr8RpXC6FsPVV5HhrW+qRATGdCLrYxeCyAo=
-SIZE (libvpx-1.9.0.tar.gz) = 5326239
+SHA256 (libvpx-1.10.0.tar.gz) = hYA8y9vdejsD2TAYfLBV8TU1lpacH5Lr7C24OfpPg0o=
+SIZE (libvpx-1.10.0.tar.gz) = 5340421
Index: patches/patch-build_make_Makefile
===================================================================
RCS file: /home/cvs/ports/multimedia/libvpx/patches/patch-build_make_Makefile,v
retrieving revision 1.14
diff -u -p -u -p -r1.14 patch-build_make_Makefile
--- patches/patch-build_make_Makefile   15 Sep 2019 16:03:31 -0000      1.14
+++ patches/patch-build_make_Makefile   30 Mar 2021 00:14:52 -0000
@@ -3,7 +3,7 @@ $OpenBSD: patch-build_make_Makefile,v 1.
 Index: build/make/Makefile
 --- build/make/Makefile.orig
 +++ build/make/Makefile
-@@ -302,8 +302,7 @@ define so_template
+@@ -306,8 +306,7 @@ define so_template
  # This needs further abstraction for dealing with non-GNU linkers.
  $(1):
        $(if $(quiet),@echo "    [LD] $$@")
@@ -13,7 +13,7 @@ Index: build/make/Makefile
              -Wl,--version-script,$$(EXPORTS_FILE) -o $$@ \
              $$(filter %.o,$$^) $$(extralibs)
  endef
-@@ -388,7 +387,7 @@ LIBS=$(call enabled,LIBS)
+@@ -392,7 +391,7 @@ LIBS=$(call enabled,LIBS)
  .libs: $(LIBS)
        @touch $@
  $(foreach lib,$(filter %_g.a,$(LIBS)),$(eval $(call archive_template,$(lib))))
Index: patches/patch-configure
===================================================================
RCS file: /home/cvs/ports/multimedia/libvpx/patches/patch-configure,v
retrieving revision 1.21
diff -u -p -u -p -r1.21 patch-configure
--- patches/patch-configure     3 Oct 2020 13:19:37 -0000       1.21
+++ patches/patch-configure     30 Mar 2021 00:14:50 -0000
@@ -3,7 +3,7 @@ $OpenBSD: patch-configure,v 1.21 2020/10
 Index: configure
 --- configure.orig
 +++ configure
-@@ -114,7 +114,9 @@ all_platforms="${all_platforms} armv7s-darwin-gcc"
+@@ -115,7 +115,9 @@ all_platforms="${all_platforms} armv7s-darwin-gcc"
  all_platforms="${all_platforms} armv8-linux-gcc"
  all_platforms="${all_platforms} mips32-linux-gcc"
  all_platforms="${all_platforms} mips64-linux-gcc"
@@ -13,7 +13,7 @@ Index: configure
  all_platforms="${all_platforms} sparc-solaris-gcc"
  all_platforms="${all_platforms} x86-android-gcc"
  all_platforms="${all_platforms} x86-darwin8-gcc"
-@@ -169,7 +171,7 @@ for t in ${all_targets}; do
+@@ -171,7 +173,7 @@ for t in ${all_targets}; do
      [ -f "${source_path}/${t}.mk" ] && enable_feature ${t}
  done
  
@@ -22,7 +22,7 @@ Index: configure
    die "diff missing: Try installing diffutils via your package manager."
  fi
  
-@@ -184,19 +186,6 @@ if [ "`cd \"${source_path}\" && pwd`" != "`pwd`" ]; th
+@@ -186,19 +188,6 @@ if [ "`cd \"${source_path}\" && pwd`" != "`pwd`" ]; th
    fi
  fi
  
@@ -42,7 +42,7 @@ Index: configure
  # disable codecs when their source directory does not exist
  [ -d "${source_path}/vp8" ] || disable_codec vp8
  [ -d "${source_path}/vp9" ] || disable_codec vp9
-@@ -531,7 +520,7 @@ process_detect() {
+@@ -533,7 +522,7 @@ process_detect() {
          # here rather than at option parse time because the target auto-detect
          # magic happens after the command line has been parsed.
          case "${tgt_os}" in
Index: patches/patch-libs_mk
===================================================================
RCS file: /home/cvs/ports/multimedia/libvpx/patches/patch-libs_mk,v
retrieving revision 1.19
diff -u -p -u -p -r1.19 patch-libs_mk
--- patches/patch-libs_mk       3 Oct 2020 13:19:37 -0000       1.19
+++ patches/patch-libs_mk       30 Mar 2021 00:14:50 -0000
@@ -3,7 +3,7 @@ $OpenBSD: patch-libs_mk,v 1.19 2020/10/0
 Index: libs.mk
 --- libs.mk.orig
 +++ libs.mk
-@@ -304,22 +304,17 @@ EXPORT_FILE             := libvpx.def
+@@ -322,22 +322,17 @@ EXPORT_FILE             := libvpx.def
  LIBVPX_SO_SYMLINKS      :=
  LIBVPX_SO_IMPLIB        := libvpx_dll.a
  else
@@ -27,7 +27,7 @@ Index: libs.mk
  $(BUILD_PFX)$(LIBVPX_SO): EXPORTS_FILE = $(EXPORT_FILE)
  
  libvpx.def: $(call enabled,CODEC_EXPORTS)
-@@ -342,15 +337,7 @@ $(1): $(2)
+@@ -360,15 +355,7 @@ $(1): $(2)
        $(qexec)ln -sf $(2) $$@
  endef
  
Index: pkg/PLIST
===================================================================
RCS file: /home/cvs/ports/multimedia/libvpx/pkg/PLIST,v
retrieving revision 1.8
diff -u -p -u -p -r1.8 PLIST
--- pkg/PLIST   24 Dec 2019 15:08:09 -0000      1.8
+++ pkg/PLIST   30 Mar 2021 00:20:39 -0000
@@ -8,6 +8,7 @@ include/vpx/vp8dx.h
 include/vpx/vpx_codec.h
 include/vpx/vpx_decoder.h
 include/vpx/vpx_encoder.h
+include/vpx/vpx_ext_ratectrl.h
 include/vpx/vpx_frame_buffer.h
 include/vpx/vpx_image.h
 include/vpx/vpx_integer.h

Reply via email to