ref: 8c763d216050ca744e2c1bc4784945e37ff8a5df
parent: a75ee78bd998f393b9deada2859cf5f8ebbafe75
author: Jean-Baptiste Kempf <jb@videolan.org>
date: Wed Jun 17 03:01:20 EDT 2020
Update NEWS for 0.7.1
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,14 @@
+Changes for 0.7.1 'Frigatebird':
+------------------------------
+
+0.7.1 is a minor update on 0.7.0:
+ - ARM32 NEON optimizations for itxfm, which can give up to 28% speedup
+ - SSE2 optimizations for prep_bilin and prep_8tap
+ - AVX2 optimizations for MC scaled
+ - Fix a clamping issue in motion vector projection
+ - Improvements on the dav1dplay utility player to support resizing
+
+
Changes for 0.7.0 'Frigatebird':
------------------------------
--- a/meson.build
+++ b/meson.build
@@ -23,7 +23,7 @@
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
project('dav1d', ['c'],
- version: '0.7.0',
+ version: '0.7.1',
default_options: ['c_std=c99',
'warning_level=2',
'buildtype=release',
@@ -30,7 +30,7 @@
'b_ndebug=if-release'],
meson_version: '>= 0.47.0')
-dav1d_soname_version = '4.0.1'
+dav1d_soname_version = '4.0.2'
dav1d_api_version_array = dav1d_soname_version.split('.')
dav1d_api_version_major = dav1d_api_version_array[0]
dav1d_api_version_minor = dav1d_api_version_array[1]