You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.1 KiB
49 lines
1.1 KiB
4 months ago
|
package {
|
||
|
// See: http://go/android-license-faq
|
||
|
// A large-scale-change added 'default_applicable_licenses' to import
|
||
|
// all of the 'license_kinds' from "frameworks_av_license"
|
||
|
// to get the below license kinds:
|
||
|
// SPDX-license-identifier-Apache-2.0
|
||
|
default_applicable_licenses: ["frameworks_av_license"],
|
||
|
}
|
||
|
|
||
|
cc_library {
|
||
|
name: "libcodec2_soft_avcdec",
|
||
|
defaults: [
|
||
|
"libcodec2_soft-defaults",
|
||
|
"libcodec2_soft_sanitize_signed-defaults",
|
||
|
"libcodec2_soft_sanitize_cfi-defaults",
|
||
|
],
|
||
|
|
||
|
static_libs: ["libavcdec"],
|
||
|
|
||
|
srcs: ["C2SoftAvcDec.cpp"],
|
||
|
|
||
|
include_dirs: [
|
||
|
"external/libavc/decoder",
|
||
|
"external/libavc/common",
|
||
|
],
|
||
|
}
|
||
|
|
||
|
cc_library {
|
||
|
name: "libcodec2_soft_avcenc",
|
||
|
defaults: [
|
||
|
"libcodec2_soft-defaults",
|
||
|
"libcodec2_soft_sanitize_signed-defaults",
|
||
|
"libcodec2_soft_sanitize_cfi-defaults",
|
||
|
],
|
||
|
|
||
|
static_libs: ["libavcenc"],
|
||
|
|
||
|
srcs: ["C2SoftAvcEnc.cpp"],
|
||
|
|
||
|
include_dirs: [
|
||
|
"external/libavc/encoder",
|
||
|
"external/libavc/common",
|
||
|
],
|
||
|
|
||
|
cflags: [
|
||
|
"-Wno-unused-variable",
|
||
|
],
|
||
|
}
|