Skip to content

Commit 42b2b24

Browse files
committed
Update NEWS for 1.5.1
1 parent 40ff2a1 commit 42b2b24

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

NEWS

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
Changes for 1.5.1 'Sonic':
2+
--------------------------
3+
4+
1.5.1 is a minor release of dav1d, focusing on optimizations and stack reduction:
5+
6+
- Rewrite of the looprestoration (SGR, wiener) to reduce stack usage
7+
- Rewrite of {put,prep}_scaled functions
8+
9+
Now, the required stack space for dav1d should be: 62 KB on x86_64 and
10+
58KB on arm and aarch64.
11+
12+
- Improvements on the SSSE3 SGR
13+
- Improvements on ARM32/ARM64 looprestoration optimizations
14+
- RISC-V: blend optimizations for high bitdepth
15+
- Power9: blend optimizations for 8bpc
16+
- Port RISC-V to POSIX/non-Linux OS
17+
- AArch64: Add Neon implementation of load_tmvs
18+
- Fix a rare, but possible deadlock, in flush()
19+
20+
121
Changes for 1.5.0 'Sonic':
222
--------------------------
323

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2424

2525
project('dav1d', ['c'],
26-
version: '1.5.0',
26+
version: '1.5.1',
2727
default_options: ['c_std=c99',
2828
'warning_level=2',
2929
'buildtype=release',
@@ -147,7 +147,7 @@ if host_machine.system() == 'windows'
147147
rc_data.set('API_VERSION_MAJOR', dav1d_api_version_major)
148148
rc_data.set('API_VERSION_MINOR', dav1d_api_version_minor)
149149
rc_data.set('API_VERSION_REVISION', dav1d_api_version_revision)
150-
rc_data.set('COPYRIGHT_YEARS', '2018-2024')
150+
rc_data.set('COPYRIGHT_YEARS', '2018-2025')
151151
else
152152
thread_dependency = dependency('threads')
153153
thread_compat_dep = []

0 commit comments

Comments
 (0)