Update AUTHORS,CHANGELOG,CMakeLists.txt for v3.8.0 Bug: aomedia:3515 Change-Id: Ibb34c3b7a637cc10952bb41e161f7c3fe637171e
diff --git a/AUTHORS b/AUTHORS index 79056a1..ade7a1a 100644 --- a/AUTHORS +++ b/AUTHORS
@@ -29,6 +29,7 @@ Apurve Kumar Pandey <apurve.pandey@ittiam.com> Arild Fuldseth <arilfuld@cisco.com> Aron Rosenberg <arosenberg@logitech.com> +Arpad Panyik <Arpad.Panyik@arm.com> Arun Singh Negi <arun.negi@ittiam.com> Attila Nagy <attilanagy@google.com> Balaji Anandapadmanaban <balaji.anandapadmanaban@arm.com> @@ -96,6 +97,7 @@ Harish Mahendrakar <harish.mahendrakar@ittiam.com> Henrik Lundin <hlundin@google.com> Hien Ho <hienho@google.com> +Hirokazu Honda <hiroh@google.com> Hui Su <huisu@google.com> Ilie Halip <ilie.halip@gmail.com> Ilya Brailovskiy <brailovs@lab126.com> @@ -150,6 +152,7 @@ Lauren Partin <lpartin@google.com> Lawrence Velázquez <larryv@macports.org> leolzhao <leolzhao@tencent.com> +Leon Kollar <Leon.Kollar@arm.com> L. E. Segovia <amy@amyspark.me> Lester Lu <kslu@google.com> liang zhao <leolzhao@tencent.com> @@ -191,7 +194,6 @@ Mudassir Galaganath <mudassir.galaganath@ittiam.com> Mufaddal Chakera <mufaddal.chakera@ittiam.com> Narayan Kalaburgi <narayan.kalaburgi@ittiam.com> -Narayan <narayan.kalaburgi@ittiam.com> Nathan E. Egge <negge@mozilla.com> Neeraj Gadgil <neeraj.gadgil@ittiam.com> Neha Mary Thomas <neha.marythomas@ittiam.com> @@ -242,8 +244,10 @@ Sami Boukortt <sboukortt@google.com> Sami Pietilä <samipietila@google.com> Samuel Thibault <samuel.thibault@ens-lyon.org> +Samuthirika S <samuthirika.s@ittiam.com> Sarah Parker <sarahparker@google.com> Sasi Inguva <isasi@google.com> +Satheesh Kumar <satheesh.kumar@ittiam.com> Satish Kumar Suman <satish.suman@ittiam.com> Scott Graham <scottmg@chromium.org> Scott LaVarnway <slavarnway@google.com> @@ -261,8 +265,9 @@ Stanislav Vitvitskyy <vitvitskyy@google.com> Stefan Holmer <holmer@google.com> Steinar Midtskogen <stemidts@cisco.com> +Steve Lhomme <robux4@gmail.com> Suman Sunkara <sunkaras@google.com> -susannad <susannad@google.com> +Susanna D'Souza <susannad@google.com> Taekhyun Kim <takim@nvidia.com> Takanori MATSUURA <t.matsuu@gmail.com> Tamar Levy <tamar.levy@intel.com> @@ -290,7 +295,6 @@ Vishesh <vishesh.garg@ittiam.com> Vishnu Teja Manyam <vishnu.teja@ittiam.com> Vitalii Dziumenko <vdziumenko@luxoft.com> -Vitalii Dziumenko <vdziumenko@luxoft.corp-partner.google.com> Wan-Teh Chang <wtc@google.com> Wei-Ting Lin <weitinglin@google.com> Wenyao Liu <wenyao.liu@cidana.com>
diff --git a/CHANGELOG b/CHANGELOG index f35903d..aa1a630 100644 --- a/CHANGELOG +++ b/CHANGELOG
@@ -1,3 +1,34 @@ +2023-11-21 v3.8.0 + This release includes new codec interfaces, compression efficiency and + perceptual improvements, speedup and memory optimizations and many bug + fixes. This release is ABI compatible with the last release. + + - New Features + * New codec controls: + * AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR: Set the maximum number of + consecutive frame drops allowed for the frame dropper in 1 pass + CBR mode. + * Run-time CPU feature detection for all Arm platforms: + CRC, DotProd, I8MM and SVE CPU feature presence is detected at run + time and code paths making use of these features are selected + dynamically. These code paths provide meaningful performance gains + for standard bitdepth live-stream and VoD encoding: up to 10% and + 20% respectively, over the Armv8.0-A baseline build. + +2023-11-17 v3.7.1 + This release includes several bug fixes. This release is ABI + compatible with the last release. See + https://aomedia.googlesource.com/aom/+log/v3.7.0..v3.7.1 for all the + commits in this release. + + - Bug Fixes + * aomedia:3349: heap overflow when increasing resolution + * aomedia:3478: GCC 12.2.0 emits a -Wstringop-overflow warning on + aom/av1/encoder/motion_search_facade.c + * aomedia:3489: Detect encoder and image high bit depth mismatch + * aomedia:3491: heap-buffer-overflow on frame size change + * b/303023614: Segfault at encoding time for high bit depth images + 2023-08-10 v3.7.0 This release includes new codec interfaces, compression efficiency and perceptual improvements, speedup and memory optimizations and many bug fixes.
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2e5b623..c97ccd1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -58,9 +58,9 @@ # passed to libtool. # # We set SO_FILE_VERSION = [c-a].a.r -set(LT_CURRENT 10) +set(LT_CURRENT 11) set(LT_REVISION 0) -set(LT_AGE 7) +set(LT_AGE 8) math(EXPR SO_VERSION "${LT_CURRENT} - ${LT_AGE}") set(SO_FILE_VERSION "${SO_VERSION}.${LT_AGE}.${LT_REVISION}") unset(LT_CURRENT)