shithub: dav1d

Download patch

ref: 39667c751d427e447cbe8be783cfecd296659e24
parent: 162ba33db1dafc37f142836fd58a2867012072b0
author: Jean-Baptiste Kempf <jb@videolan.org>
date: Mon Dec 2 13:19:06 EST 2019

Update NEWS

--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,13 @@
+Changes for 0.5.2 'Asiatic Cheetah':
+------------------------------------
+
+0.5.2 is a small release improving speed for ARM32 and adding minor features:
+ - 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
+
+
 Changes for 0.5.1 'Asiatic Cheetah':
 ------------------------------------
 
--- 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.5.1',
+    version: '0.5.2',
     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       = '3.0.0'
+dav1d_soname_version       = '3.1.0'
 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]