commit dav1d for openSUSE:Factory

2020-09-04 Thread root
Hello community,

here is the log from the commit of package dav1d for openSUSE:Factory checked 
in at 2020-09-04 10:53:51

Comparing /work/SRC/openSUSE:Factory/dav1d (Old)
 and  /work/SRC/openSUSE:Factory/.dav1d.new.3399 (New)


Package is "dav1d"

Fri Sep  4 10:53:51 2020 rev:16 rq:831062 version:0.7.1

Changes:

--- /work/SRC/openSUSE:Factory/dav1d/dav1d.changes  2020-06-23 
21:04:33.181834188 +0200
+++ /work/SRC/openSUSE:Factory/.dav1d.new.3399/dav1d.changes2020-09-04 
10:53:57.350457617 +0200
@@ -1,0 +2,5 @@
+Tue Sep  1 11:11:55 UTC 2020 - Dominique Leuenberger 
+
+- Add dav1d-nasm-2.15.patch: Fix compilation with nasm 2.15.
+
+---

New:

  dav1d-nasm-2.15.patch



Other differences:
--
++ dav1d.spec ++
--- /var/tmp/diff_new_pack.GF6kQX/_old  2020-09-04 10:53:59.502458769 +0200
+++ /var/tmp/diff_new_pack.GF6kQX/_new  2020-09-04 10:53:59.506458772 +0200
@@ -26,6 +26,8 @@
 URL:https://code.videolan.org/videolan/dav1d
 Source0:
https://code.videolan.org/videolan/dav1d/-/archive/%{version}/dav1d-%{version}.tar.gz
 Source99:   baselibs.conf
+# PATCH-FIX-UPSTREAM dav1d-nasm-2.15.patch dims...@opensuse.org -- Fix 
compilation with nasm 2.15
+Patch0: dav1d-nasm-2.15.patch
 BuildRequires:  meson >= 0.47.0
 BuildRequires:  nasm >= 2.14
 BuildRequires:  pkgconfig

++ dav1d-nasm-2.15.patch ++
>From 2b567aaa367c63975ad7f4fcbad96051a276a8d1 Mon Sep 17 00:00:00 2001
From: Henrik Gramner 
Date: Tue, 30 Jun 2020 23:33:27 +0200
Subject: [PATCH] Fix compilation with nasm 2.15

%{:} macro operand ranges were broken in nasm 2.15 which causes
errors when compiling, so avoid using those for now.

Some new warnings regarding use of empty macro parameters has also
been added, adjust some x86inc code to silence those.
---
 src/ext/x86/x86inc.asm | 46 +++---
 src/x86/mc_sse.asm |  6 +-
 2 files changed, 31 insertions(+), 21 deletions(-)

diff --git a/src/ext/x86/x86inc.asm b/src/ext/x86/x86inc.asm
index 1ccd5cda..38a54710 100644
--- a/src/ext/x86/x86inc.asm
+++ b/src/ext/x86/x86inc.asm
@@ -425,16 +425,6 @@ DECLARE_REG_TMP_SIZE 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14
 %endif
 %endmacro
 
-%macro DEFINE_ARGS_INTERNAL 3+
-%ifnum %2
-DEFINE_ARGS %3
-%elif %1 == 4
-DEFINE_ARGS %2
-%elif %1 > 4
-DEFINE_ARGS %2, %3
-%endif
-%endmacro
-
 %if WIN64 ; Windows x64 ;=
 
 DECLARE_REG 0,  rcx
@@ -453,7 +443,7 @@ DECLARE_REG 12, R15, 104
 DECLARE_REG 13, R12, 112
 DECLARE_REG 14, R13, 120
 
-%macro PROLOGUE 2-5+ 0 ; #args, #regs, #xmm_regs, [stack_size,] arg_names...
+%macro PROLOGUE 2-5+ 0, 0 ; #args, #regs, #xmm_regs, [stack_size,] arg_names...
 %assign num_args %1
 %assign regs_used %2
 ASSERT regs_used >= num_args
@@ -465,7 +455,15 @@ DECLARE_REG 14, R13, 120
 WIN64_SPILL_XMM %3
 %endif
 LOAD_IF_USED 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
-DEFINE_ARGS_INTERNAL %0, %4, %5
+%if %0 > 4
+%ifnum %4
+DEFINE_ARGS %5
+%else
+DEFINE_ARGS %4, %5
+%endif
+%elifnnum %4
+DEFINE_ARGS %4
+%endif
 %endmacro
 
 %macro WIN64_PUSH_XMM 0
@@ -561,7 +559,7 @@ DECLARE_REG 12, R15, 56
 DECLARE_REG 13, R12, 64
 DECLARE_REG 14, R13, 72
 
-%macro PROLOGUE 2-5+ 0 ; #args, #regs, #xmm_regs, [stack_size,] arg_names...
+%macro PROLOGUE 2-5+ 0, 0 ; #args, #regs, #xmm_regs, [stack_size,] arg_names...
 %assign num_args %1
 %assign regs_used %2
 %assign xmm_regs_used %3
@@ -571,7 +569,15 @@ DECLARE_REG 14, R13, 72
 PUSH_IF_USED 9, 10, 11, 12, 13, 14
 ALLOC_STACK %4
 LOAD_IF_USED 6, 7, 8, 9, 10, 11, 12, 13, 14
-DEFINE_ARGS_INTERNAL %0, %4, %5
+%if %0 > 4
+%ifnum %4
+DEFINE_ARGS %5
+%else
+DEFINE_ARGS %4, %5
+%endif
+%elifnnum %4
+DEFINE_ARGS %4
+%endif
 %endmacro
 
 %define has_epilogue regs_used > 9 || stack_size > 0 || vzeroupper_required
@@ -612,7 +618,7 @@ DECLARE_REG 6, ebp, 28
 
 DECLARE_ARG 7, 8, 9, 10, 11, 12, 13, 14
 
-%macro PROLOGUE 2-5+ ; #args, #regs, #xmm_regs, [stack_size,] arg_names...
+%macro PROLOGUE 2-5+ 0, 0 ; #args, #regs, #xmm_regs, [stack_size,] arg_names...
 %assign num_args %1
 %assign regs_used %2
 ASSERT regs_used >= num_args
@@ -627,7 +633,15 @@ DECLARE_ARG 7, 8, 9, 10, 11, 12, 13, 14
 PUSH_IF_USED 3, 4, 5, 6
 ALLOC_STACK %4
 LOAD_IF_USED 0, 1, 2, 3, 4, 5, 6
-DEFINE_ARGS_INTERNAL %0, %4, %5
+%if %0 > 4
+%ifnum %4
+DEFINE_ARGS %5
+%else
+DEFINE_ARGS %4, %5
+%endif
+%elifnnum %4
+  

commit dav1d for openSUSE:Factory

2020-06-23 Thread root
Hello community,

here is the log from the commit of package dav1d for openSUSE:Factory checked 
in at 2020-06-23 21:04:08

Comparing /work/SRC/openSUSE:Factory/dav1d (Old)
 and  /work/SRC/openSUSE:Factory/.dav1d.new.2956 (New)


Package is "dav1d"

Tue Jun 23 21:04:08 2020 rev:15 rq:816275 version:0.7.1

Changes:

--- /work/SRC/openSUSE:Factory/dav1d/dav1d.changes  2020-05-29 
21:13:26.250344973 +0200
+++ /work/SRC/openSUSE:Factory/.dav1d.new.2956/dav1d.changes2020-06-23 
21:04:33.181834188 +0200
@@ -1,0 +2,14 @@
+Mon Jun 22 08:13:31 UTC 2020 - aloi...@gmx.com
+
+- Update to version 0.7.1
+  * ARM32 NEON optimizations for itxfm, which can give up to 28%
+speedup, and MSAC
+  * SSE2 optimizations for prep_bilin and prep_8tap
+  * AVX2 optimizations for MC scaled
+  * Fix a clamping issue in motion vector projection
+  * Fix an issue on some specific Haswell CPU on ipred_z AVX2
+functions
+  * Improvements on the dav1dplay utility player to support
+resizing
+
+---

Old:

  dav1d-0.7.0.tar.gz

New:

  dav1d-0.7.1.tar.gz



Other differences:
--
++ dav1d.spec ++
--- /var/tmp/diff_new_pack.1w4GvY/_old  2020-06-23 21:04:34.173837393 +0200
+++ /var/tmp/diff_new_pack.1w4GvY/_new  2020-06-23 21:04:34.177837406 +0200
@@ -18,7 +18,7 @@
 
 %define sover   4
 Name:   dav1d
-Version:0.7.0
+Version:0.7.1
 Release:0
 Summary:An AV1 decoder
 License:BSD-2-Clause

++ dav1d-0.7.0.tar.gz -> dav1d-0.7.1.tar.gz ++
 19303 lines of diff (skipped)




commit dav1d for openSUSE:Factory

2020-05-29 Thread root
Hello community,

here is the log from the commit of package dav1d for openSUSE:Factory checked 
in at 2020-05-29 21:13:22

Comparing /work/SRC/openSUSE:Factory/dav1d (Old)
 and  /work/SRC/openSUSE:Factory/.dav1d.new.3606 (New)


Package is "dav1d"

Fri May 29 21:13:22 2020 rev:14 rq:807817 version:0.7.0

Changes:

--- /work/SRC/openSUSE:Factory/dav1d/dav1d.changes  2020-03-11 
18:31:50.798880272 +0100
+++ /work/SRC/openSUSE:Factory/.dav1d.new.3606/dav1d.changes2020-05-29 
21:13:26.250344973 +0200
@@ -1,0 +2,18 @@
+Wed May 20 16:50:41 UTC 2020 - Luigi Baldoni 
+
+- Update to verison 0.7.0
+  * Faster refmv implementation gaining up to 12% speed while
+-25% of RAM (Single Thread)
+  * 10b/12b ARM64 optimizations are mostly complete:
++ ipred (paeth, smooth, dc, pal, filter, cfl)
++ itxfm (only 10b)
+  * AVX2/SSSE3 for non-4:2:0 film grain and for mc.resize
+  * AVX2 for cfl4:4:4
+  * AVX-512 CDEF filter
+  * ARM64 8b improvements for cfl_ac and itxfm
+  * ARM64 implementation for emu_edge in 8b/10b/12b
+  * ARM32 implementation for emu_edge in 8b
+  * Improvements on the dav1dplay utility player to support 10
+bit, non-4:2:0 pixel formats and film grain on the GPU
+
+---

Old:

  dav1d-0.6.0.tar.gz

New:

  dav1d-0.7.0.tar.gz



Other differences:
--
++ dav1d.spec ++
--- /var/tmp/diff_new_pack.x6V8mv/_old  2020-05-29 21:13:28.182350795 +0200
+++ /var/tmp/diff_new_pack.x6V8mv/_new  2020-05-29 21:13:28.186350808 +0200
@@ -18,7 +18,7 @@
 
 %define sover   4
 Name:   dav1d
-Version:0.6.0
+Version:0.7.0
 Release:0
 Summary:An AV1 decoder
 License:BSD-2-Clause

++ dav1d-0.6.0.tar.gz -> dav1d-0.7.0.tar.gz ++
 30208 lines of diff (skipped)




commit dav1d for openSUSE:Factory

2020-03-11 Thread root
Hello community,

here is the log from the commit of package dav1d for openSUSE:Factory checked 
in at 2020-03-11 18:31:42

Comparing /work/SRC/openSUSE:Factory/dav1d (Old)
 and  /work/SRC/openSUSE:Factory/.dav1d.new.3160 (New)


Package is "dav1d"

Wed Mar 11 18:31:42 2020 rev:13 rq:782014 version:0.6.0

Changes:

--- /work/SRC/openSUSE:Factory/dav1d/dav1d.changes  2019-12-11 
12:08:53.528645281 +0100
+++ /work/SRC/openSUSE:Factory/.dav1d.new.3160/dav1d.changes2020-03-11 
18:31:50.798880272 +0100
@@ -1,0 +2,27 @@
+Fri Mar  6 07:20:04 UTC 2020 - Luigi Baldoni 
+
+- Update to version 0.6.0
+  * New ARM64 optimizations for the 10/12bit depth:
++ mc_avg, mc_w_avg, mc_mask
++ mc_put/mc_prep 8tap/bilin
++ mc_warp_8x8
++ mc_w_mask
++ mc_blend
++ wiener
++ SGR
++ loopfilter
++ cdef
+  * New AVX-512 optimizations for prep_bilin, prep_8tap,
+cdef_filter, mc_avg/w_avg/mask
+  * New SSSE3 optimizations for film grain
+  * New AVX2 optimizations for msac_adapt16
+  * Fix rare mismatches against the reference decoder, notably
+because of clipping
+  * Improvements on ARM64 on msac, cdef and looprestoration
+optimizations
+  * Improvements on AVX2 optimizations for cdef_filter
+  * Improvements in the C version for itxfm, cdef_filter
+
+- Bump sover to 4
+
+---

Old:

  dav1d-0.5.2.tar.gz

New:

  dav1d-0.6.0.tar.gz



Other differences:
--
++ dav1d.spec ++
--- /var/tmp/diff_new_pack.L7UETD/_old  2020-03-11 18:31:52.490881310 +0100
+++ /var/tmp/diff_new_pack.L7UETD/_new  2020-03-11 18:31:52.498881315 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package dav1d
 #
-# Copyright (c) 2019 SUSE LLC
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,9 +16,9 @@
 #
 
 
-%define sover   3
+%define sover   4
 Name:   dav1d
-Version:0.5.2
+Version:0.6.0
 Release:0
 Summary:An AV1 decoder
 License:BSD-2-Clause
@@ -27,7 +27,7 @@
 Source0:
https://code.videolan.org/videolan/dav1d/-/archive/%{version}/dav1d-%{version}.tar.gz
 Source99:   baselibs.conf
 BuildRequires:  meson >= 0.47.0
-BuildRequires:  nasm
+BuildRequires:  nasm >= 2.14
 BuildRequires:  pkgconfig
 # necessary to meson
 BuildRequires:  rpm >= 4.14

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.L7UETD/_old  2020-03-11 18:31:52.526881332 +0100
+++ /var/tmp/diff_new_pack.L7UETD/_new  2020-03-11 18:31:52.526881332 +0100
@@ -1 +1 @@
-libdav1d3
+libdav1d4

++ dav1d-0.5.2.tar.gz -> dav1d-0.6.0.tar.gz ++
 28984 lines of diff (skipped)




commit dav1d for openSUSE:Factory

2019-12-11 Thread root
Hello community,

here is the log from the commit of package dav1d for openSUSE:Factory checked 
in at 2019-12-11 12:08:28

Comparing /work/SRC/openSUSE:Factory/dav1d (Old)
 and  /work/SRC/openSUSE:Factory/.dav1d.new.4691 (New)


Package is "dav1d"

Wed Dec 11 12:08:28 2019 rev:12 rq:754113 version:0.5.2

Changes:

--- /work/SRC/openSUSE:Factory/dav1d/dav1d.changes  2019-10-27 
13:40:18.349215736 +0100
+++ /work/SRC/openSUSE:Factory/.dav1d.new.4691/dav1d.changes2019-12-11 
12:08:53.528645281 +0100
@@ -1,0 +2,9 @@
+Wed Dec  4 19:03:37 UTC 2019 - Luigi Baldoni 
+
+- Update to version 0.5.2
+  * ARM32 optimizations for loopfilter, ipred_dc|h|v
+  * Add section-5 raw OBU demuxer
+  * Improve the speed by reducing the L2 cache collisions
+  * Fix minor issues
+
+---

Old:

  dav1d-0.5.1.tar.gz

New:

  dav1d-0.5.2.tar.gz



Other differences:
--
++ dav1d.spec ++
--- /var/tmp/diff_new_pack.yGH7kJ/_old  2019-12-11 12:08:54.668644801 +0100
+++ /var/tmp/diff_new_pack.yGH7kJ/_new  2019-12-11 12:08:54.668644801 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package dav1d
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %define sover   3
 Name:   dav1d
-Version:0.5.1
+Version:0.5.2
 Release:0
 Summary:An AV1 decoder
 License:BSD-2-Clause

++ dav1d-0.5.1.tar.gz -> dav1d-0.5.2.tar.gz ++
 3459 lines of diff (skipped)




commit dav1d for openSUSE:Factory

2019-10-27 Thread root
Hello community,

here is the log from the commit of package dav1d for openSUSE:Factory checked 
in at 2019-10-27 13:40:16

Comparing /work/SRC/openSUSE:Factory/dav1d (Old)
 and  /work/SRC/openSUSE:Factory/.dav1d.new.2990 (New)


Package is "dav1d"

Sun Oct 27 13:40:16 2019 rev:11 rq:743031 version:0.5.1

Changes:

--- /work/SRC/openSUSE:Factory/dav1d/dav1d.changes  2019-10-14 
14:52:42.866259963 +0200
+++ /work/SRC/openSUSE:Factory/.dav1d.new.2990/dav1d.changes2019-10-27 
13:40:18.349215736 +0100
@@ -1,0 +2,12 @@
+Sat Oct 26 05:39:14 UTC 2019 - Luigi Baldoni 
+
+- Update to version 0.5.1
+  * SSE2 optimizations for CDEF, wiener and warp_affine
+  * NEON optimizations for SGR on ARM32
+  * Fix mismatch issue in x86 asm in inverse identity transforms
+  * Fix build issue in ARM64 assembly if debug info was enabled
+  * Add a workaround for Xcode 11 -fstack-check bug
+
+- Dropped arm64_ipred_symbols_aligned.patch (merged upstream)
+
+---

Old:

  arm64_ipred_symbols_aligned.patch
  dav1d-0.5.0.tar.gz

New:

  dav1d-0.5.1.tar.gz



Other differences:
--
++ dav1d.spec ++
--- /var/tmp/diff_new_pack.hTPhpv/_old  2019-10-27 13:40:19.433217043 +0100
+++ /var/tmp/diff_new_pack.hTPhpv/_new  2019-10-27 13:40:19.437217049 +0100
@@ -18,7 +18,7 @@
 
 %define sover   3
 Name:   dav1d
-Version:0.5.0
+Version:0.5.1
 Release:0
 Summary:An AV1 decoder
 License:BSD-2-Clause
@@ -26,8 +26,6 @@
 URL:https://code.videolan.org/videolan/dav1d
 Source0:
https://code.videolan.org/videolan/dav1d/-/archive/%{version}/dav1d-%{version}.tar.gz
 Source99:   baselibs.conf
-# PATCH-FIX-UPSTREAM arm64_ipred_symbols_aligned.patch
-Patch0: arm64_ipred_symbols_aligned.patch
 BuildRequires:  meson >= 0.47.0
 BuildRequires:  nasm
 BuildRequires:  pkgconfig

++ dav1d-0.5.0.tar.gz -> dav1d-0.5.1.tar.gz ++
 4542 lines of diff (skipped)




commit dav1d for openSUSE:Factory

2019-10-14 Thread root
Hello community,

here is the log from the commit of package dav1d for openSUSE:Factory checked 
in at 2019-10-14 14:52:41

Comparing /work/SRC/openSUSE:Factory/dav1d (Old)
 and  /work/SRC/openSUSE:Factory/.dav1d.new.2352 (New)


Package is "dav1d"

Mon Oct 14 14:52:41 2019 rev:10 rq:737448 version:0.5.0

Changes:

--- /work/SRC/openSUSE:Factory/dav1d/dav1d.changes  2019-08-15 
12:25:45.730600776 +0200
+++ /work/SRC/openSUSE:Factory/.dav1d.new.2352/dav1d.changes2019-10-14 
14:52:42.866259963 +0200
@@ -1,0 +2,29 @@
+Fri Oct 11 09:43:36 UTC 2019 - Luigi Baldoni 
+
+- Update to version 0.5.0
+  Medium release fixing regressions and minor issues, and
+  improving speed significantly:
+  * Export ITU T.35 metadata
+  * Speed improvements on blend_ on ARM
+  * Speed improvements on decode_coef and MSAC
+  * NEON optimizations for blend*, w_mask_, ipred functions for
+ARM64
+  * NEON optimizations for CDEF and warp on ARM32
+  * SSE2 optimizations for MSAC hi_tok decoding
+  * SSSE3 optimizations for deblocking loopfilters and
+warp_affine
+  * AVX-2 optimizations for film grain and ipred_z2
+  * SSE4 optimizations for warp_affine
+  * VSX optimizations for wiener
+  * Fix inverse transform overflows in x86 and NEON asm
+  * Fix integer overflows with large frames
+  * Improve film grain generation to match reference code
+  * Improve compatibility with older binutils for ARM
+  * More advanced Player example in tools
+
+- Bump soversion to 3
+
+- Added arm64_ipred_symbols_aligned.patch to fix aarch64
+  build
+
+---
@@ -64 +93 @@
-Tue Mar 12 22:23:22 UTC 2019 - klaatu 
+Tue Mar 12 22:23:22 UTC 2019 - Luigi Baldoni 

Old:

  dav1d-0.4.0.tar.gz

New:

  arm64_ipred_symbols_aligned.patch
  dav1d-0.5.0.tar.gz



Other differences:
--
++ dav1d.spec ++
--- /var/tmp/diff_new_pack.fUG0Bw/_old  2019-10-14 14:52:43.734257699 +0200
+++ /var/tmp/diff_new_pack.fUG0Bw/_new  2019-10-14 14:52:43.734257699 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define sover   2
+%define sover   3
 Name:   dav1d
-Version:0.4.0
+Version:0.5.0
 Release:0
 Summary:An AV1 decoder
 License:BSD-2-Clause
@@ -26,6 +26,8 @@
 URL:https://code.videolan.org/videolan/dav1d
 Source0:
https://code.videolan.org/videolan/dav1d/-/archive/%{version}/dav1d-%{version}.tar.gz
 Source99:   baselibs.conf
+# PATCH-FIX-UPSTREAM arm64_ipred_symbols_aligned.patch
+Patch0: arm64_ipred_symbols_aligned.patch
 BuildRequires:  meson >= 0.47.0
 BuildRequires:  nasm
 BuildRequires:  pkgconfig

++ arm64_ipred_symbols_aligned.patch ++
>From 27601dbec97acb4f757b8c878a30fcdb6168b44d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Martin=20Storsj=C3=B6?= 
Date: Fri, 11 Oct 2019 13:17:36 +0300
Subject: [PATCH] arm64: ipred: Make sure all symbols are aligned

Some (newer?) binutils versions error out if there are symbols in
the text section, that point to unaligned addresses.
---
 src/arm/64/ipred.S | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/arm/64/ipred.S b/src/arm/64/ipred.S
index 41b3c1c..9513212 100644
--- a/src/arm/64/ipred.S
+++ b/src/arm/64/ipred.S
@@ -2244,6 +2244,7 @@ L(ipred_cfl_ac_420_tbl):
 .hword L(ipred_cfl_ac_420_tbl) - L(ipred_cfl_ac_420_w16)
 .hword L(ipred_cfl_ac_420_tbl) - L(ipred_cfl_ac_420_w8)
 .hword L(ipred_cfl_ac_420_tbl) - L(ipred_cfl_ac_420_w4)
+.hword 0
 
 L(ipred_cfl_ac_420_w16_tbl):
 .hword L(ipred_cfl_ac_420_w16_tbl) - L(ipred_cfl_ac_420_w16_wpad0)
@@ -2432,6 +2433,7 @@ L(ipred_cfl_ac_422_tbl):
 .hword L(ipred_cfl_ac_422_tbl) - L(ipred_cfl_ac_422_w16)
 .hword L(ipred_cfl_ac_422_tbl) - L(ipred_cfl_ac_422_w8)
 .hword L(ipred_cfl_ac_422_tbl) - L(ipred_cfl_ac_422_w4)
+.hword 0
 
 L(ipred_cfl_ac_422_w16_tbl):
 .hword L(ipred_cfl_ac_422_w16_tbl) - L(ipred_cfl_ac_422_w16_wpad0)
-- 
2.22.0

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.fUG0Bw/_old  2019-10-14 14:52:43.774257596 +0200
+++ /var/tmp/diff_new_pack.fUG0Bw/_new  2019-10-14 14:52:43.774257596 +0200
@@ -1 +1 @@
-libdav1d2
+libdav1d3

++ dav1d-0.4.0.tar.gz -> dav1d-0.5.0.tar.gz ++
 31345 lines of diff (skipped)




commit dav1d for openSUSE:Factory

2019-08-15 Thread root
Hello community,

here is the log from the commit of package dav1d for openSUSE:Factory checked 
in at 2019-08-15 12:25:44

Comparing /work/SRC/openSUSE:Factory/dav1d (Old)
 and  /work/SRC/openSUSE:Factory/.dav1d.new.9556 (New)


Package is "dav1d"

Thu Aug 15 12:25:44 2019 rev:9 rq:721088 version:0.4.0

Changes:

--- /work/SRC/openSUSE:Factory/dav1d/dav1d.changes  2019-05-16 
21:58:45.786817925 +0200
+++ /work/SRC/openSUSE:Factory/.dav1d.new.9556/dav1d.changes2019-08-15 
12:25:45.730600776 +0200
@@ -1,0 +2,21 @@
+Mon Aug  5 14:55:40 UTC 2019 - Luigi Baldoni 
+
+- Update to version 0.4.0
+  * Fix playback with unknown OBUs
+  * Add an option to limit the maximum frame size
+  * SSE2 and ARM64 optimizations for MSAC
+  * Improve speed on 32bits systems
+  * Optimization in obmc blend
+  * Reduce RAM usage significantly
+  * The initial PPC SIMD code, cdef_filter
+  * NEON optimizations for blend functions on ARM
+  * NEON optimizations for w_mask functions on ARM
+  * NEON optimizations for inverse transforms on ARM64
+  * Improve handling of malloc failures
+  * Simple Player example in tools
+
+- Dropped dav1d.armv6.patch (merged upstream)
+
+- Bumped SOVERSION to 2
+
+---

Old:

  dav1d-0.3.1.tar.gz
  dav1d.armv6.patch

New:

  dav1d-0.4.0.tar.gz



Other differences:
--
++ dav1d.spec ++
--- /var/tmp/diff_new_pack.Je5Xvf/_old  2019-08-15 12:25:46.242600648 +0200
+++ /var/tmp/diff_new_pack.Je5Xvf/_new  2019-08-15 12:25:46.246600647 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define sover   1
+%define sover   2
 Name:   dav1d
-Version:0.3.1
+Version:0.4.0
 Release:0
 Summary:An AV1 decoder
 License:BSD-2-Clause
@@ -26,8 +26,6 @@
 URL:https://code.videolan.org/videolan/dav1d
 Source0:
https://code.videolan.org/videolan/dav1d/-/archive/%{version}/dav1d-%{version}.tar.gz
 Source99:   baselibs.conf
-# PATCH-FIX-UPSTREAM dav1d.armv6.patch o...@aepfle.de -- disable armv7 asm for 
armv6 builds
-Patch0: dav1d.armv6.patch
 BuildRequires:  meson >= 0.47.0
 BuildRequires:  nasm
 BuildRequires:  pkgconfig

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.Je5Xvf/_old  2019-08-15 12:25:46.262600643 +0200
+++ /var/tmp/diff_new_pack.Je5Xvf/_new  2019-08-15 12:25:46.262600643 +0200
@@ -1 +1 @@
-libdav1d1
+libdav1d2

++ dav1d-0.3.1.tar.gz -> dav1d-0.4.0.tar.gz ++
 10900 lines of diff (skipped)




commit dav1d for openSUSE:Factory

2019-05-16 Thread root
Hello community,

here is the log from the commit of package dav1d for openSUSE:Factory checked 
in at 2019-05-16 21:58:43

Comparing /work/SRC/openSUSE:Factory/dav1d (Old)
 and  /work/SRC/openSUSE:Factory/.dav1d.new.5148 (New)


Package is "dav1d"

Thu May 16 21:58:43 2019 rev:8 rq:702711 version:0.3.1

Changes:

--- /work/SRC/openSUSE:Factory/dav1d/dav1d.changes  2019-05-13 
14:48:06.458422391 +0200
+++ /work/SRC/openSUSE:Factory/.dav1d.new.5148/dav1d.changes2019-05-16 
21:58:45.786817925 +0200
@@ -1,0 +2,5 @@
+Mon May 13 19:48:51 UTC 2019 - o...@aepfle.de
+
+- Added dav1d.armv6.patch (disables armv7 asm for armv6 builds)
+
+---

New:

  dav1d.armv6.patch



Other differences:
--
++ dav1d.spec ++
--- /var/tmp/diff_new_pack.LwkaRH/_old  2019-05-16 21:58:46.238817727 +0200
+++ /var/tmp/diff_new_pack.LwkaRH/_new  2019-05-16 21:58:46.242817726 +0200
@@ -26,6 +26,8 @@
 URL:https://code.videolan.org/videolan/dav1d
 Source0:
https://code.videolan.org/videolan/dav1d/-/archive/%{version}/dav1d-%{version}.tar.gz
 Source99:   baselibs.conf
+# PATCH-FIX-UPSTREAM dav1d.armv6.patch o...@aepfle.de -- disable armv7 asm for 
armv6 builds
+Patch0: dav1d.armv6.patch
 BuildRequires:  meson >= 0.47.0
 BuildRequires:  nasm
 BuildRequires:  pkgconfig
@@ -60,7 +62,7 @@
 %{name} is an AV1 decoder library.
 
 %prep
-%setup -q
+%autosetup -p1
 
 %build
 %meson

++ dav1d.armv6.patch ++
--- a/tests/checkasm/checkasm.h
+++ b/tests/checkasm/checkasm.h
@@ -145,6 +145,7 @@ static inline uint64_t readtime(void) {
 #define readtime readtime
 #endif
 #elif ARCH_ARM && !defined(_MSC_VER)
+#if __ARM_ARCH > 6
 static inline uint64_t readtime(void) {
 uint32_t cycle_counter;
 /* This requires enabling user mode access to the cycle counter (which
@@ -156,6 +157,7 @@ static inline uint64_t readtime(void) {
 }
 #define readtime readtime
 #endif
+#endif
 
 /* Verifies that clobbered callee-saved registers
  * are properly saved and restored */



commit dav1d for openSUSE:Factory

2019-05-13 Thread root
Hello community,

here is the log from the commit of package dav1d for openSUSE:Factory checked 
in at 2019-05-13 14:48:04

Comparing /work/SRC/openSUSE:Factory/dav1d (Old)
 and  /work/SRC/openSUSE:Factory/.dav1d.new.5148 (New)


Package is "dav1d"

Mon May 13 14:48:04 2019 rev:7 rq:702369 version:0.3.1

Changes:

--- /work/SRC/openSUSE:Factory/dav1d/dav1d.changes  2019-05-05 
21:19:11.652913482 +0200
+++ /work/SRC/openSUSE:Factory/.dav1d.new.5148/dav1d.changes2019-05-13 
14:48:06.458422391 +0200
@@ -1,0 +2,9 @@
+Sat May 11 16:06:40 UTC 2019 - Luigi Baldoni 
+
+- Update to version 0.3.1
+  * Fix a buffer overflow in frame-threading mode on SSSE3 CPUs
+  * Reduce binary size, notably on Windows
+  * SSSE3 optimizations for ipred_filter
+  * ARM optimizations for MSAC
+
+---

Old:

  dav1d-0.3.0.tar.gz

New:

  dav1d-0.3.1.tar.gz



Other differences:
--
++ dav1d.spec ++
--- /var/tmp/diff_new_pack.4WtmO4/_old  2019-05-13 14:48:07.394424720 +0200
+++ /var/tmp/diff_new_pack.4WtmO4/_new  2019-05-13 14:48:07.398424730 +0200
@@ -18,7 +18,7 @@
 
 %define sover   1
 Name:   dav1d
-Version:0.3.0
+Version:0.3.1
 Release:0
 Summary:An AV1 decoder
 License:BSD-2-Clause

++ dav1d-0.3.0.tar.gz -> dav1d-0.3.1.tar.gz ++
 3043 lines of diff (skipped)




commit dav1d for openSUSE:Factory

2019-05-05 Thread root
Hello community,

here is the log from the commit of package dav1d for openSUSE:Factory checked 
in at 2019-05-05 21:19:10

Comparing /work/SRC/openSUSE:Factory/dav1d (Old)
 and  /work/SRC/openSUSE:Factory/.dav1d.new.5148 (New)


Package is "dav1d"

Sun May  5 21:19:10 2019 rev:6 rq:699483 version:0.3.0

Changes:

--- /work/SRC/openSUSE:Factory/dav1d/dav1d.changes  2019-04-21 
09:03:02.194526648 +0200
+++ /work/SRC/openSUSE:Factory/.dav1d.new.5148/dav1d.changes2019-05-05 
21:19:11.652913482 +0200
@@ -1,0 +2,7 @@
+Mon Apr 29 18:07:47 UTC 2019 - Luigi Baldoni 
+
+- Update to version 0.3.0
+  * Fixes an annoying crash on SSSE3 that happened in the itx
+functions
+
+---

Old:

  dav1d-0.2.2.tar.gz

New:

  dav1d-0.3.0.tar.gz



Other differences:
--
++ dav1d.spec ++
--- /var/tmp/diff_new_pack.Fj5mQ8/_old  2019-05-05 21:19:12.140914811 +0200
+++ /var/tmp/diff_new_pack.Fj5mQ8/_new  2019-05-05 21:19:12.140914811 +0200
@@ -18,7 +18,7 @@
 
 %define sover   1
 Name:   dav1d
-Version:0.2.2
+Version:0.3.0
 Release:0
 Summary:An AV1 decoder
 License:BSD-2-Clause

++ dav1d-0.2.2.tar.gz -> dav1d-0.3.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dav1d-0.2.2/.gitlab-ci.yml 
new/dav1d-0.3.0/.gitlab-ci.yml
--- old/dav1d-0.2.2/.gitlab-ci.yml  2019-04-19 09:16:39.0 +0200
+++ new/dav1d-0.3.0/.gitlab-ci.yml  2019-04-29 19:04:48.0 +0200
@@ -270,6 +270,26 @@
 - cd build && time meson test -v
 dependencies: []
 
+test-debian-unaligned-stack:
+image: registry.videolan.org:5000/dav1d-debian-unstable:20190215130514
+stage: test
+tags:
+- debian
+- amd64
+cache:
+key: testdata.git-20190215
+paths:
+- cache/dav1d-test-data.git/
+script:
+- test -d cache || mkdir cache
+- test -d cache/dav1d-test-data.git && 
GIT_DIR=cache/dav1d-test-data.git git fetch 
--refmap=refs/heads/master:refs/heads/master origin master
+- test -d cache/dav1d-test-data.git || git clone --bare 
https://code.videolan.org/videolan/dav1d-test-data.git cache/dav1d-test-data.git
+- git clone cache/dav1d-test-data.git tests/dav1d-test-data
+- meson build --buildtype release -Dtestdata_tests=true 
-Dlogging=false -Dstack_alignment=16
+- ninja -C build
+- cd build && time meson test -v
+dependencies: []
+
 test-debian-asan:
 image: registry.videolan.org:5000/dav1d-debian-unstable:20190215130514
 stage: test
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dav1d-0.2.2/NEWS new/dav1d-0.3.0/NEWS
--- old/dav1d-0.2.2/NEWS2019-04-19 09:16:39.0 +0200
+++ new/dav1d-0.3.0/NEWS2019-04-29 19:04:48.0 +0200
@@ -1,5 +1,13 @@
-Changes for 0.2.2 'Antelope':
-
+Changes for 0.3.0 'Sailfish':
+--
+
+This is the final release for the numerous speed improvements of 0.3.0-rc.
+It mostly:
+ - Fixes an annoying crash on SSSE3 that happened in the itx functions
+
+
+Changes for 0.2.2 (0.3.0-rc) 'Antelope':
+-
 
  - Large improvement on MSAC decoding with SSE, bringing 4-6% speed increase
The impact is important on SSSE3, SSE4 and AVX-2 cpus
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dav1d-0.2.2/meson.build new/dav1d-0.3.0/meson.build
--- old/dav1d-0.2.2/meson.build 2019-04-19 09:16:39.0 +0200
+++ new/dav1d-0.3.0/meson.build 2019-04-29 19:04:48.0 +0200
@@ -23,7 +23,7 @@
 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
 project('dav1d', ['c'],
-version: '0.2.2',
+version: '0.3.0',
 default_options: ['c_std=c99',
   'warning_level=2',
   'buildtype=release',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dav1d-0.2.2/src/x86/itx_ssse3.asm 
new/dav1d-0.3.0/src/x86/itx_ssse3.asm
--- old/dav1d-0.2.2/src/x86/itx_ssse3.asm   2019-04-19 09:16:39.0 
+0200
+++ new/dav1d-0.3.0/src/x86/itx_ssse3.asm   2019-04-29 19:04:48.0 
+0200
@@ -5130,7 +5130,7 @@
 ret
 
 
-cglobal inv_txfm_add_identity_identity_32x32, 4, 6, 8, 16*4, dst, stride, 
coeff, eob, tx2
+cglobal inv_txfm_add_identity_identity_32x32, 4, 6, 8, 16*5, dst, stride, 
coeff, eob, tx2
 %undef cmp
 
 mov r4, 2




commit dav1d for openSUSE:Factory

2019-04-21 Thread root
Hello community,

here is the log from the commit of package dav1d for openSUSE:Factory checked 
in at 2019-04-21 09:02:58

Comparing /work/SRC/openSUSE:Factory/dav1d (Old)
 and  /work/SRC/openSUSE:Factory/.dav1d.new.5536 (New)


Package is "dav1d"

Sun Apr 21 09:02:58 2019 rev:5 rq:695924 version:0.2.2

Changes:

--- /work/SRC/openSUSE:Factory/dav1d/dav1d.changes  2019-04-03 
09:24:46.651723742 +0200
+++ /work/SRC/openSUSE:Factory/.dav1d.new.5536/dav1d.changes2019-04-21 
09:03:02.194526648 +0200
@@ -1,0 +2,14 @@
+Fri Apr 19 07:48:06 UTC 2019 - Luigi Baldoni 
+
+- Update to version 0.2.2
+  * Large improvement on MSAC decoding with SSE, bringing 4-6%
+speed increase
+The impact is important on SSSE3, SSE4 and AVX-2 cpus
+  * SSSE3 optimizations for all blocks size in itx
+  * SSSE3 optimizations for ipred_paeth and ipref_cfl (420, 422
+and 444)
+  * Speed improvements on CDEF for SSE4 CPUs
+  * NEON optimizations for SGR and loop filter
+  * Minor crashes, improvements and build changes
+
+---

Old:

  dav1d-0.2.1.tar.gz

New:

  dav1d-0.2.2.tar.gz



Other differences:
--
++ dav1d.spec ++
--- /var/tmp/diff_new_pack.Sv1VYu/_old  2019-04-21 09:03:03.782528535 +0200
+++ /var/tmp/diff_new_pack.Sv1VYu/_new  2019-04-21 09:03:03.782528535 +0200
@@ -18,7 +18,7 @@
 
 %define sover   1
 Name:   dav1d
-Version:0.2.1
+Version:0.2.2
 Release:0
 Summary:An AV1 decoder
 License:BSD-2-Clause

++ dav1d-0.2.1.tar.gz -> dav1d-0.2.2.tar.gz ++
 13222 lines of diff (skipped)




commit dav1d for openSUSE:Factory

2019-04-03 Thread root
Hello community,

here is the log from the commit of package dav1d for openSUSE:Factory checked 
in at 2019-04-03 09:24:43

Comparing /work/SRC/openSUSE:Factory/dav1d (Old)
 and  /work/SRC/openSUSE:Factory/.dav1d.new.25356 (New)


Package is "dav1d"

Wed Apr  3 09:24:43 2019 rev:4 rq:690564 version:0.2.1

Changes:

--- /work/SRC/openSUSE:Factory/dav1d/dav1d.changes  2019-03-13 
09:16:39.191377919 +0100
+++ /work/SRC/openSUSE:Factory/.dav1d.new.25356/dav1d.changes   2019-04-03 
09:24:46.651723742 +0200
@@ -1,0 +2,6 @@
+Tue Apr  2 06:43:21 UTC 2019 - Dominique Leuenberger 
+
+- Add baselibs.conf: ffmpeg, which is the main consumer of Dav1d,
+  produces -32bit packages that would be uninstallable otherwise.
+
+---

New:

  baselibs.conf



Other differences:
--
++ dav1d.spec ++
--- /var/tmp/diff_new_pack.4DMbL0/_old  2019-04-03 09:24:47.175723989 +0200
+++ /var/tmp/diff_new_pack.4DMbL0/_new  2019-04-03 09:24:47.175723989 +0200
@@ -25,6 +25,7 @@
 Group:  Productivity/Multimedia/Video/Editors and Convertors
 URL:https://code.videolan.org/videolan/dav1d
 Source0:
https://code.videolan.org/videolan/dav1d/-/archive/%{version}/dav1d-%{version}.tar.gz
+Source99:   baselibs.conf
 BuildRequires:  meson >= 0.47.0
 BuildRequires:  nasm
 BuildRequires:  pkgconfig

++ baselibs.conf ++
libdav1d1



commit dav1d for openSUSE:Factory

2019-03-13 Thread root
Hello community,

here is the log from the commit of package dav1d for openSUSE:Factory checked 
in at 2019-03-13 09:16:24

Comparing /work/SRC/openSUSE:Factory/dav1d (Old)
 and  /work/SRC/openSUSE:Factory/.dav1d.new.28833 (New)


Package is "dav1d"

Wed Mar 13 09:16:24 2019 rev:3 rq:684500 version:0.2.1

Changes:

--- /work/SRC/openSUSE:Factory/dav1d/dav1d.changes  2019-03-05 
12:25:29.820838223 +0100
+++ /work/SRC/openSUSE:Factory/.dav1d.new.28833/dav1d.changes   2019-03-13 
09:16:39.191377919 +0100
@@ -1,0 +2,10 @@
+Tue Mar 12 22:23:22 UTC 2019 - klaatu 
+
+- Update to version 0.2.1
+  * SSSE3 optimization for cdef_dir
+  * AVX-2 improvements of the existing CDEF optimizations
+  * NEON improvements of the existing CDEF and wiener
+optimizations
+  * Clarification about the numbering/versionning scheme
+
+---

Old:

  dav1d-0.2.0.tar.gz

New:

  dav1d-0.2.1.tar.gz



Other differences:
--
++ dav1d.spec ++
--- /var/tmp/diff_new_pack.WHLmum/_old  2019-03-13 09:16:39.951377841 +0100
+++ /var/tmp/diff_new_pack.WHLmum/_new  2019-03-13 09:16:39.955377841 +0100
@@ -18,7 +18,7 @@
 
 %define sover   1
 Name:   dav1d
-Version:0.2.0
+Version:0.2.1
 Release:0
 Summary:An AV1 decoder
 License:BSD-2-Clause

++ dav1d-0.2.0.tar.gz -> dav1d-0.2.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dav1d-0.2.0/NEWS new/dav1d-0.2.1/NEWS
--- old/dav1d-0.2.0/NEWS2019-03-04 15:21:54.0 +0100
+++ new/dav1d-0.2.1/NEWS2019-03-12 15:28:36.0 +0100
@@ -1,3 +1,12 @@
+Changes for 0.2.1 'Antelope':
+
+
+ - SSSE3 optimization for cdef_dir
+ - AVX-2 improvements of the existing CDEF optimizations
+ - NEON improvements of the existing CDEF and wiener optimizations
+ - Clarification about the numbering/versionning scheme
+
+
 Changes for 0.2.0 'Antelope':
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dav1d-0.2.0/THANKS.md new/dav1d-0.2.1/THANKS.md
--- old/dav1d-0.2.0/THANKS.md   2019-03-04 15:21:54.0 +0100
+++ new/dav1d-0.2.1/THANKS.md   2019-03-12 15:28:36.0 +0100
@@ -16,4 +16,4 @@
 
 And all the dav1d Authors (git shortlog -sn), including:
 
-Janne Grunau, Ronald S. Bultje, James Almer, Marvin Scholz, Henrik Gramner, 
Martin Storsjö, Luc Trudeau, David Michael Barr, Hugo Beauzée-Luyssen, Steve 
Lhomme, Jean-Baptiste Kempf, Derek Buitenhuis, Nathan E. Egge, Raphaël Zumer, 
Francois Cartegnie, Niklas Haas, Konstantin Pavlov, Boyuan Xiao, Raphael Zumer 
and Michael Bradshaw.
+Janne Grunau, Ronald S. Bultje, Martin Storsjö, James Almer, Henrik Gramner, 
Marvin Scholz, Luc Trudeau, David Michael Barr, Jean-Baptiste Kempf, Hugo 
Beauzée-Luyssen, Steve Lhomme, Francois Cartegnie, Konstantin Pavlov, Nathan E. 
Egge, Victorien Le Couviour--Tuffet, Derek Buitenhuis, Liwei Wang, Raphaël 
Zumer, Michael Bradshaw, Niklas Haas, Xuefeng Jiang, Boyuan Xiao, Kyle 
Siefring, Matthias Dressel, Rupert Swarbrick, Thierry Foucu, Thomas Daede, Jan 
Beich, SmilingWolf, Tristan Laurent, Vittorio Giovara, Anisse Astier, Dale 
Curtis, Fred Barbier, Jean-Yves Avenard, Luca Barbato, Mark Shuttleworth, 
Nicolas Frattaroli, Rostislav Pehlivanov, Shiz, Steinar Midtskogen, Timo Gurr 
and skal.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dav1d-0.2.0/include/dav1d/dav1d.h 
new/dav1d-0.2.1/include/dav1d/dav1d.h
--- old/dav1d-0.2.0/include/dav1d/dav1d.h   2019-03-04 15:21:54.0 
+0100
+++ new/dav1d-0.2.1/include/dav1d/dav1d.h   2019-03-12 15:28:36.0 
+0100
@@ -74,16 +74,6 @@
 DAV1D_API const char *dav1d_version(void);
 
 /**
- * Get library version based on version control system.
- */
-DAV1D_API const char *dav1d_version_vcs(void);
-
-/**
- * Get library version as unsigned int.
- */
-DAV1D_API unsigned int dav1d_version_int(void);
-
-/**
  * Initialize settings to default values.
  *
  * @param s Input settings context.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dav1d-0.2.0/include/dav1d/meson.build 
new/dav1d-0.2.1/include/dav1d/meson.build
--- old/dav1d-0.2.0/include/dav1d/meson.build   2019-03-04 15:21:54.0 
+0100
+++ new/dav1d-0.2.1/include/dav1d/meson.build   2019-03-12 15:28:36.0 
+0100
@@ -24,9 +24,9 @@
 
 # installed version.h header generation
 version_h_data = configuration_data()
-version_h_data.set('DAV1D_VERSION_MAJOR', dav1d_version_major)
-version_h_data.set('DAV1D_VERSION_MINOR', dav1d_version_minor)

commit dav1d for openSUSE:Factory

2019-03-05 Thread root
Hello community,

here is the log from the commit of package dav1d for openSUSE:Factory checked 
in at 2019-03-05 12:25:29

Comparing /work/SRC/openSUSE:Factory/dav1d (Old)
 and  /work/SRC/openSUSE:Factory/.dav1d.new.28833 (New)


Package is "dav1d"

Tue Mar  5 12:25:29 2019 rev:2 rq:681533 version:0.2.0

Changes:

--- /work/SRC/openSUSE:Factory/dav1d/dav1d.changes  2019-01-05 
14:42:13.192487286 +0100
+++ /work/SRC/openSUSE:Factory/.dav1d.new.28833/dav1d.changes   2019-03-05 
12:25:29.820838223 +0100
@@ -1,0 +2,13 @@
+Mon Mar  4 17:31:53 UTC 2019 - Luigi Baldoni 
+
+- Update to version 0.2.0
+  * ARM64 and ARM optimizations using NEON instructions
+  * SSSE3 optimizations for both 32 and 64bits
+  * More AVX-2 assembly, reaching almost completion
+  * Fix installation of includes
+  * Rewrite inverse transforms to avoid overflows
+  * Snap packaging for Linux
+  * Updated API (ABI and API break)
+  * Fixes for un-decodable samples
+
+---

Old:

  dav1d-0.1.0.tar.gz

New:

  dav1d-0.2.0.tar.gz



Other differences:
--
++ dav1d.spec ++
--- /var/tmp/diff_new_pack.MHS8sx/_old  2019-03-05 12:25:30.396838048 +0100
+++ /var/tmp/diff_new_pack.MHS8sx/_new  2019-03-05 12:25:30.400838046 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package dav1d
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,21 +12,21 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
-%define sover   0
+%define sover   1
 Name:   dav1d
-Version:0.1.0
+Version:0.2.0
 Release:0
 Summary:An AV1 decoder
 License:BSD-2-Clause
 Group:  Productivity/Multimedia/Video/Editors and Convertors
 URL:https://code.videolan.org/videolan/dav1d
 Source0:
https://code.videolan.org/videolan/dav1d/-/archive/%{version}/dav1d-%{version}.tar.gz
-BuildRequires:  nasm
 BuildRequires:  meson >= 0.47.0
+BuildRequires:  nasm
 BuildRequires:  pkgconfig
 # necessary to meson
 BuildRequires:  rpm >= 4.14

++ dav1d-0.1.0.tar.gz -> dav1d-0.2.0.tar.gz ++
 30032 lines of diff (skipped)