On the road to 1.5.4

This commit is contained in:
Jean-Baptiste Kempf
2026-06-24 13:01:36 +02:00
parent 953c7139a5
commit 77ef66354d
2 changed files with 15 additions and 3 deletions
+12
View File
@@ -1,3 +1,15 @@
Changes for 1.5.4 'Sonic':
--------------------------
1.5.4 is a minor release of dav1d, focused maintenance:
- Support for OS/2
- Switch to external checkasm
- Add Armv9.3-A GCS support
- AArch64: optimize ipred_*_8bpc & ipred_smooth_*_8bpc functions
- ARM32: optimize prep_neon
- RISC-V: add ipred_v,_h,_pal,_dc optimizations
Changes for 1.5.3 'Sonic': Changes for 1.5.3 'Sonic':
-------------------------- --------------------------
+3 -3
View File
@@ -1,4 +1,4 @@
# Copyright © 2018-2024, VideoLAN and dav1d authors # Copyright © 2018-2026, VideoLAN and dav1d authors
# All rights reserved. # All rights reserved.
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@@ -23,7 +23,7 @@
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
project('dav1d', ['c'], project('dav1d', ['c'],
version: '1.5.3', version: '1.5.4',
default_options: ['c_std=c99', default_options: ['c_std=c99',
'warning_level=2', 'warning_level=2',
'buildtype=release', 'buildtype=release',
@@ -146,7 +146,7 @@ if host_machine.system() == 'windows'
rc_data.set('API_VERSION_MAJOR', dav1d_api_version_major) rc_data.set('API_VERSION_MAJOR', dav1d_api_version_major)
rc_data.set('API_VERSION_MINOR', dav1d_api_version_minor) rc_data.set('API_VERSION_MINOR', dav1d_api_version_minor)
rc_data.set('API_VERSION_REVISION', dav1d_api_version_revision) rc_data.set('API_VERSION_REVISION', dav1d_api_version_revision)
rc_data.set('COPYRIGHT_YEARS', '2018-2025') rc_data.set('COPYRIGHT_YEARS', '2018-2026')
else else
thread_dependency = dependency('threads') thread_dependency = dependency('threads')
thread_compat_dep = [] thread_compat_dep = []