v3.6.1: Update AUTHORS, CHANGELOG, CMakeLists.txt Bug: aomedia:3437 Change-Id: I8fe6f877a69d3695149fe7523afcfc3e3ca11db5
diff --git a/AUTHORS b/AUTHORS index 9668dd3..3695891 100644 --- a/AUTHORS +++ b/AUTHORS
@@ -147,6 +147,7 @@ Lauren Partin <lpartin@google.com> Lawrence Velázquez <larryv@macports.org> leolzhao <leolzhao@tencent.com> +L. E. Segovia <amy@amyspark.me> Lester Lu <kslu@google.com> liang zhao <leolzhao@tencent.com> Linfeng Zhang <linfengz@google.com>
diff --git a/CHANGELOG b/CHANGELOG index b66891a..33ec941 100644 --- a/CHANGELOG +++ b/CHANGELOG
@@ -1,3 +1,24 @@ +2023-05-05 v3.6.1 + This release includes several bug fixes. This release is ABI + compatible with the last release. + + - Bug Fixes + * aomedia:2871: Guard the support of the 7.x and 8.x levels for AV1 + under the CONFIG_CWG_C013 config flag, and only output the 7.x and + 8.x levels when explicitly requested. + * aomedia:3382: Choose sb_size by ppi instead of svc. + * aomedia:3384: Fix fullpel search limits. + * aomedia:3388: Replace left shift of xq_active by multiplication. + * aomedia:3389: Fix MV clamping in av1_mv_pred. + * aomedia:3390: set_ld_layer_depth: cap max_layer_depth to + MAX_ARF_LAYERS. + * aomedia:3429: Move lpf thread data init to lpf_pipeline_mt_init(). + * b:266719111: Fix undefined behavior in Arm Neon code. + * b:269840681: nonrd_opt: align scan tables. + * rtc: Fix is_key_frame setting in variance partition. + * Build: Fix build with clang-cl and Visual Studio. + * Build: Fix module definition file for MinGW/MSYS. + 2023-02-03 v3.6.0 This release includes compression efficiency and perceptual quality improvements, speedup and memory optimizations, and some new features.
diff --git a/CMakeLists.txt b/CMakeLists.txt index 68828d7..87d88fa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -52,7 +52,7 @@ # # We set SO_FILE_VERSION = [c-a].a.r set(LT_CURRENT 9) -set(LT_REVISION 0) +set(LT_REVISION 1) set(LT_AGE 6) math(EXPR SO_VERSION "${LT_CURRENT} - ${LT_AGE}") set(SO_FILE_VERSION "${SO_VERSION}.${LT_AGE}.${LT_REVISION}")