Skip to content

Commit

Permalink
libraries: add aom (AV1 codec)
Browse files Browse the repository at this point in the history
  • Loading branch information
wfrisch committed May 8, 2024
1 parent f169b8e commit fb007f5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -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/
11 changes: 11 additions & 0 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
1 change: 1 addition & 0 deletions libraries/aom
Submodule aom added at 766e37

0 comments on commit fb007f5

Please sign in to comment.