Skip to content

Commit

Permalink
Update version to 3.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
sekrit-twc committed Jun 30, 2023
1 parent 9833300 commit e5b0de6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
3.0.5
colorspace: add ST.428-1 (gamma 2.6) transfer function
depth: fix AVX-512 integer to float border handling (introduced in 2.6)
depth: fix NEON dither border handling (introduced in 3.0)
graph: fix clipping in alpha premultiplication (introduced in 3.0)
x86: optimizations for AMD Zen4 processors

3.0.4
colorspace: fix ARIB STD-B67 constant-luminance EOTF (introduced in 2.6)
colorspace: filter negative values from sRGB-like transfer functions
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([zimg], [3.0.4], [https://github.com/sekrit-twc/zimg/pulls], [zimg], [https://github.com/sekrit-twc/zimg])
AC_INIT([zimg], [3.0.5], [https://github.com/sekrit-twc/zimg/pulls], [zimg], [https://github.com/sekrit-twc/zimg])
AC_CONFIG_MACRO_DIR([m4])

: ${CFLAGS=""}
Expand Down
2 changes: 1 addition & 1 deletion src/zimg/api/zimg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ constexpr unsigned API_VERSION_2_4 = ZIMG_MAKE_API_VERSION(2, 4);
thread_local zimg_error_code_e g_last_error = ZIMG_ERROR_SUCCESS;
thread_local std::string g_last_error_msg;

constexpr unsigned VERSION_INFO[] = { 3, 0, 4 };
constexpr unsigned VERSION_INFO[] = { 3, 0, 5 };


template <class T, class U>
Expand Down
2 changes: 1 addition & 1 deletion src/zimg/depth/arm/dither_neon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ struct StoreU8 {
uint8x8_t x = vmovn_u16(x_);
uint8x8_t orig = vld1_u8(ptr);
uint8x8_t mask = vld1_u8(neon_mask_table[idx]);

orig = vand_u8(orig, mask);
x = vbic_u8(x, mask);
x = vorr_u8(x, orig);
Expand Down

0 comments on commit e5b0de6

Please sign in to comment.