Accepting request 885219 from multimedia:libs
- using service/obspcio again because upstream tar ball is changing, leading to trust validation errors - udpate to 1.10.0: 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. OBS-URL: https://build.opensuse.org/request/show/885219 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libvpx?expand=0&rev=43
This commit is contained in:
commit
5b05e4dbeb
9
_service
9
_service
@ -1,11 +1,11 @@
|
||||
<services>
|
||||
<service name="obs_scm" mode="disabled">
|
||||
<service name="obs_scm" mode="manual">
|
||||
<param name="url">https://github.com/webmproject/libvpx.git</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="version">1.9.0</param>
|
||||
<param name="revision">v1.9.0</param>
|
||||
<param name="version">1.10.0</param>
|
||||
<param name="revision">v1.10.0</param>
|
||||
</service>
|
||||
<service mode="disabled" name="set_version" />
|
||||
<service mode="manual" name="set_version" />
|
||||
|
||||
<service mode="buildtime" name="tar" />
|
||||
<service mode="buildtime" name="recompress">
|
||||
@ -13,3 +13,4 @@
|
||||
<param name="compression">xz</param>
|
||||
</service>
|
||||
</services>
|
||||
|
||||
|
3
libvpx-1.10.0.obscpio
Normal file
3
libvpx-1.10.0.obscpio
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:69d11c9a1ec389e94e8b5cf0917666a595493fd8b0c4743ba0854f249cce1114
|
||||
size 22516237
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:eaf4762d933c9c81b1cdcfbe7f10221a1a5f4b954324df150039da82dcfb7abb
|
||||
size 22581773
|
@ -1,3 +1,5 @@
|
||||
diff --git a/vpx_ports/x86_abi_support.asm b/vpx_ports/x86_abi_support.asm
|
||||
index 6b2d6b968..6cb439c9c 100644
|
||||
--- a/vpx_ports/x86_abi_support.asm
|
||||
+++ b/vpx_ports/x86_abi_support.asm
|
||||
@@ -10,6 +10,7 @@
|
||||
|
@ -1,3 +1,39 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 14 06:00:00 UTC 2021 - Adrian Schröter <adrian@suse.de>
|
||||
|
||||
- using service/obspcio again because upstream tar ball is changing,
|
||||
leading to trust validation errors
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 30 22:20:30 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- udpate to 1.10.0:
|
||||
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.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 6 08:37:33 UTC 2020 - Paolo Stivanin <info@paolostivanin.com>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
name: libvpx
|
||||
version: 1.9.0
|
||||
mtime: 1596139155
|
||||
commit: 6516e974f8c40d0e49b19a4b55b1c98e7432edbb
|
||||
version: 1.10.0
|
||||
mtime: 1616097586
|
||||
commit: b41ffb53f1000ab2227c1736d8c1355aa5081c40
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libvpx
|
||||
#
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -18,13 +18,13 @@
|
||||
|
||||
%define sover 6
|
||||
Name: libvpx
|
||||
Version: 1.9.0
|
||||
Version: 1.10.0
|
||||
Release: 0
|
||||
Summary: VP8/VP9 codec library
|
||||
License: BSD-3-Clause AND GPL-2.0-or-later
|
||||
Group: Productivity/Multimedia/Other
|
||||
URL: http://www.webmproject.org/
|
||||
Source0: libvpx-%{version}.tar.xz
|
||||
URL: https://www.webmproject.org/
|
||||
Source0: %name-%version.tar.xz
|
||||
Source1000: baselibs.conf
|
||||
Patch1: libvpx-define-config_pic.patch
|
||||
Patch2: libvpx-configure-add-s390.patch
|
||||
|
Loading…
x
Reference in New Issue
Block a user