Merge tag 'v3.6.1' into HEAD libaom v3.6.1 release 2023-05-08 v3.6.1 This release includes several bug fixes. This release is ABI compatible with the last release. See https://aomedia.googlesource.com/aom/+log/v3.6.0..v3.6.1 for all the commits in this 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:3418: Fix MV clamping in av1_int_pro_motion_estimation. * 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. Change-Id: I98f8033273b1ba51ad59cd532b9ce64bf419ebc4
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..531c6d9 100644 --- a/CHANGELOG +++ b/CHANGELOG
@@ -1,3 +1,27 @@ +2023-05-08 v3.6.1 + This release includes several bug fixes. This release is ABI + compatible with the last release. See + https://aomedia.googlesource.com/aom/+log/v3.6.0..v3.6.1 for all the + commits in this 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:3418: Fix MV clamping in av1_int_pro_motion_estimation. + * 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 2416887..6fb7362 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -59,7 +59,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}")