Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Baptiste Kempf <jb@videolan.org>2019-12-02 20:19:06 +0300
committerJean-Baptiste Kempf <jb@videolan.org>2019-12-02 20:19:06 +0300
commit39667c751d427e447cbe8be783cfecd296659e24 (patch)
treef76af5e8127678be0e02c8bb705b186d3f7ec349
parent162ba33db1dafc37f142836fd58a2867012072b0 (diff)
Update NEWS0.5.2
-rw-r--r--NEWS10
-rw-r--r--meson.build4
2 files changed, 12 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 9b55cd0..9ed950e 100644
--- 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':
------------------------------------
diff --git a/meson.build b/meson.build
index efdd09e..2bcd0b8 100644
--- a/meson.build
+++ b/meson.build
@@ -23,14 +23,14 @@
# 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',
'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]