Merge tag 'v3.13.3' into main Release v3.13.3 2026-04-02 v3.13.3 This release includes several bug fixes. This release is ABI compatible with the last release. See https://aomedia.googlesource.com/aom/+log/v3.13.2..v3.13.3 for all the commits in this release. - Bug Fixes * Commit 4cc0867f: fix multithreading crashes when loop restoration filtering is used by the encoder. * Commit 74aaa1ef: fix AOM_SCALING_MODE crashes when compound mask prediction modes are used by the encoder. Bug: 498612990 Change-Id: I60c9a3cef2e0e4e5b7113da1f5052a51fa9ef28b
diff --git a/CHANGELOG b/CHANGELOG index 12f0f4e..3e1f97c 100644 --- a/CHANGELOG +++ b/CHANGELOG
@@ -41,6 +41,18 @@ * Commit 74aaa1ef: fix AOM_SCALING_MODE crashes when compound mask prediction modes are used by the encoder. +2026-04-02 v3.13.3 + This release includes several bug fixes. This release is ABI + compatible with the last release. See + https://aomedia.googlesource.com/aom/+log/v3.13.2..v3.13.3 for all the + commits in this release. + + - Bug Fixes + * Commit 4cc0867f: fix multithreading crashes when loop restoration + filtering is used by the encoder. + * Commit 74aaa1ef: fix AOM_SCALING_MODE crashes when compound mask + prediction modes are used by the encoder. + 2026-03-17 v3.13.2 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 f25119c..580a693 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -23,7 +23,7 @@ # VERSION is the release version of the library. It should be updated at the # same time as the LT_* variables. -project(AOM LANGUAGES C CXX VERSION 3.13.2) +project(AOM LANGUAGES C CXX VERSION 3.13.3) # GENERATED source property global visibility. if(POLICY CMP0118) @@ -59,7 +59,7 @@ # # The VERSION number in project() should be updated when these variables are. set(LT_CURRENT 16) -set(LT_REVISION 2) +set(LT_REVISION 3) set(LT_AGE 13) math(EXPR SO_VERSION "${LT_CURRENT} - ${LT_AGE}") set(SO_FILE_VERSION "${SO_VERSION}.${LT_AGE}.${LT_REVISION}")