Update AUTHORS, CHANGELOG, and version for v3.10.0 Bug: 361339153 Change-Id: I660191db35bbc1a6ce2415f550f0c059b505b743
diff --git a/AUTHORS b/AUTHORS index 32fe11a..4907baf 100644 --- a/AUTHORS +++ b/AUTHORS
@@ -61,6 +61,7 @@ David Turner <david.turner@argondesign.com> Deb Mukherjee <debargha@google.com> Deepa K G <deepa.kg@ittiam.com> +Denis Nikitin <denik@google.com> Di Chen <chendixi@google.com> Diksha Singh <diksha.singh@ittiam.com> Dim Temp <dimtemp0@gmail.com>
diff --git a/CHANGELOG b/CHANGELOG index eb4d0b1..0c3769e 100644 --- a/CHANGELOG +++ b/CHANGELOG
@@ -1,7 +1,28 @@ -yyyy-mm-dd v3.10.0 +2024-08-21 v3.10.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. + The definitions of the internal macros AOM_INLINE and AOM_FORCE_INLINE have been removed from the public header aom/aom_integer.h. + - New Features + * New codec controls: + * AV1E_SET_AUTO_TILES + * AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC + * AV1E_SET_POSTENCODE_DROP_RTC + * AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR + * New key-value pair for aom_codec_set_option(): + * "auto-tiles": equivalent to the new codec control + AV1E_SET_AUTO_TILES. + + - Deprecated Features + * Deprecated codec control: + * AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR: Use the new codec control + AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR instead. + * The sframe_mode field in the aom_codec_enc_cfg_t struct is not + implemented. + 2024-06-07 v3.8.3 This release includes several bug fixes. This release is ABI compatible with the last release. See
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9f9a1b3..b21b3f9 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 12) -set(LT_REVISION 1) -set(LT_AGE 9) +set(LT_CURRENT 13) +set(LT_REVISION 0) +set(LT_AGE 10) math(EXPR SO_VERSION "${LT_CURRENT} - ${LT_AGE}") set(SO_FILE_VERSION "${SO_VERSION}.${LT_AGE}.${LT_REVISION}") unset(LT_CURRENT)