Merge tag 'v3.13.2' into main Release v3.13.2 2026-03-17 v3.13.2 This release includes several bug fixes. This release is ABI compatible with the last release. See https://aomedia.googlesource.com/aom/+log/v3.13.1..v3.13.2 for all the commits in this release. - Bug Fixes * x86: enable SSE4.2 in x86_simd_caps https://aomedia-review.googlesource.com/206481 * b:448994065: Working nasm-3.0.0 is not detected with libaom on 3.13.1 * b:480978101: Heap buffer overflow in av1_copy_and_extend_frame during encode triggered by NV12/bordered image with size_align * b:487259772: Out-of-bounds heap read in VP9 encoder via WebCodecs VideoEncoder dimension reconfiguration * b:489473886: Invalid memory read access in aom_sse_avx2 (Mozilla report) Bug: 493253375 Change-Id: Iba4c6ff6a9589da5c828bc25ad3c7fdd2ecf269b
diff --git a/CHANGELOG b/CHANGELOG index 445d744..a826d7d 100644 --- a/CHANGELOG +++ b/CHANGELOG
@@ -10,6 +10,24 @@ * Make Adaptive CDEF more decoder friendly by limiting CDEF application to only regions where high filter strengths are needed. +2026-03-17 v3.13.2 + This release includes several bug fixes. This release is ABI + compatible with the last release. See + https://aomedia.googlesource.com/aom/+log/v3.13.1..v3.13.2 for all the + commits in this release. + + - Bug Fixes + * x86: enable SSE4.2 in x86_simd_caps + https://aomedia-review.googlesource.com/206481 + * b:448994065: Working nasm-3.0.0 is not detected with libaom on + 3.13.1 + * b:480978101: Heap buffer overflow in av1_copy_and_extend_frame + during encode triggered by NV12/bordered image with size_align + * b:487259772: Out-of-bounds heap read in VP9 encoder via WebCodecs + VideoEncoder dimension reconfiguration + * b:489473886: Invalid memory read access in aom_sse_avx2 (Mozilla + report) + 2025-09-05 v3.13.1 This release is ABI compatible with the last release.
diff --git a/CMakeLists.txt b/CMakeLists.txt index d9973c4..f25119c 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.1) +project(AOM LANGUAGES C CXX VERSION 3.13.2) # 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 1) +set(LT_REVISION 2) set(LT_AGE 13) math(EXPR SO_VERSION "${LT_CURRENT} - ${LT_AGE}") set(SO_FILE_VERSION "${SO_VERSION}.${LT_AGE}.${LT_REVISION}")