From fb007f531f1ed8688126071c72ee2f92f0fba5e9 Mon Sep 17 00:00:00 2001 From: Wolfgang Frisch Date: Wed, 8 May 2024 10:19:12 +0200 Subject: [PATCH] libraries: add aom (AV1 codec) --- .gitmodules | 3 +++ config.py | 11 +++++++++++ libraries/aom | 1 + 3 files changed, 15 insertions(+) create mode 160000 libraries/aom diff --git a/.gitmodules b/.gitmodules index d284a6e..c19aa3f 100644 --- a/.gitmodules +++ b/.gitmodules @@ -238,3 +238,6 @@ [submodule "libraries/wolfssl"] path = libraries/wolfssl url = https://github.com/wolfSSL/wolfssl/ +[submodule "libraries/aom"] + path = libraries/aom + url = https://aomedia.googlesource.com/aom/ diff --git a/config.py b/config.py index ff11c40..8a42c3e 100644 --- a/config.py +++ b/config.py @@ -34,6 +34,17 @@ def sparse_paths(self): filters and fewer false positives, """ libraries = [ + Library('aom', [ + "av1/encoder/rdopt.c", + "av1/encoder/encoder.c", + "av1/encoder/partition_search.c", + "av1/encoder/encodeframe.c", + "av1/decoder/decodeframe.c", + "av1/encoder/bitstream.c", + "av1/encoder/encoder.h", + "av1/common/blockd.h", + "av1/decoder/decodemv.c", + ]), Library('boringssl', [ "ssl/internal.h", "ssl/ssl_lib.cc", diff --git a/libraries/aom b/libraries/aom new file mode 160000 index 0000000..766e37a --- /dev/null +++ b/libraries/aom @@ -0,0 +1 @@ +Subproject commit 766e37a42fff20511a81f7a0300eaf968e078ce6