blob: cb9837f05429ad6aff1f0ce11eb1915bfb5300d7 [file] [log] [blame]
Bob Badourc8375042021-02-12 21:02:31 -08001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "frameworks_av_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["frameworks_av_license"],
8}
9
S Vasudev Prasadee173172020-11-23 12:17:14 +053010cc_library {
Ray Essickc2cc4372019-08-21 14:02:28 -070011 name: "libcodec2_soft_av1dec_aom",
Ray Essick707c1462018-12-05 15:21:35 -080012 defaults: [
13 "libcodec2_soft-defaults",
14 "libcodec2_soft_sanitize_all-defaults",
15 ],
16
Ray Essickc2cc4372019-08-21 14:02:28 -070017 // coordinated with frameworks/av/media/codec2/components/gav1/Android.bp
18 // so only 1 of them has the official c2.android.av1.decoder name
19 cflags: [
20 "-DCODECNAME=\"c2.android.av1-aom.decoder\"",
21 ],
22
Ray Essick707c1462018-12-05 15:21:35 -080023 srcs: ["C2SoftAomDec.cpp"],
24 static_libs: ["libaom"],
25
26 include_dirs: [
27 "external/libaom/",
28 ],
29}