Adding libopenAPV
Third-Party Import of:
https://github.com/openapv/openapv/releases/tag/v0.1.4
Request Document: go/android3p
For CL Reviewers: go/android3p#reviewing-a-cl
For Build Team: go/ab-third-party-imports
Bug: http://b/365556358
Original import of the code can be found at: https://googleplex-android.googlesource.com/platform/external/libopenapv/+/refs/heads/third-party-review.
Security Questionnaire: http://b/365556358#comment1
Test: mm
Change-Id: Icbddab38d5e4d4bc847274b2d23799c6f7aaa01b
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..63adc39
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,148 @@
+package {
+ default_applicable_licenses: ["external_libapv_license"],
+}
+
+// Added automatically by a large-scale-change
+// See: http://go/android-license-faq
+license {
+ name: "external_libapv_license",
+ visibility: [":__subpackages__"],
+ license_kinds: [
+ "SPDX-license-identifier-BSD",
+ ],
+ license_text: [
+ "LICENSE",
+ ],
+}
+
+cc_library_headers {
+ name: "libopenapv_headers",
+ export_include_dirs: [
+ "inc",
+ ],
+ min_sdk_version: "apex_inherit",
+}
+
+cc_library_static {
+ name: "libopenapv",
+ vendor_available: true,
+ host_supported: true,
+
+ shared_libs: [
+ "liblog",
+ ],
+
+ srcs: [
+ "src/oapv.c",
+ "src/oapv_bs.c",
+ "src/oapv_metadata.c",
+ "src/oapv_port.c",
+ "src/oapv_rc.c",
+ "src/oapv_sad.c",
+ "src/oapv_tbl.c",
+ "src/oapv_tpool.c",
+ "src/oapv_tq.c",
+ "src/oapv_util.c",
+ "src/oapv_vlc.c",
+ ],
+
+ local_include_dirs: [
+ "inc",
+ "src",
+ ],
+
+ export_include_dirs: [
+ "inc",
+ ],
+
+ cflags: [
+ "-Wno-multichar",
+ "-Wall",
+ "-Werror",
+ "-Wno-unused-parameter",
+ "-Wno-pointer-sign",
+ "-Wno-reorder",
+ "-Wno-#warnings",
+ "-Wuninitialized",
+ "-Wno-self-assign",
+ "-Wno-implicit-fallthrough",
+ "-Wtautological-pointer-compare",
+ "-Wimplicit-function-declaration",
+ "-Wunused-but-set-variable",
+ "-ftree-vectorize",
+ "-finline-functions",
+ ],
+
+ arch: {
+ arm64: {
+ local_include_dirs: [
+ "src/neon",
+ ],
+
+ srcs: [
+ "src/neon/oapv_sad_neon.c",
+ "src/neon/oapv_tq_neon.c",
+ ],
+ },
+
+ arm: {
+
+ cflags: [
+ "-Wno-implicit-int",
+ "-Wno-ignored-qualifiers",
+ "-Wno-implicit-function-declaration",
+ ],
+ },
+
+ x86_64: {
+ local_include_dirs: [
+ "src/avx",
+ "src/sse",
+ ],
+
+ cflags: [
+ "-mavx2",
+ ],
+
+ srcs: [
+ "src/avx/oapv_sad_avx.c",
+ "src/avx/oapv_tq_avx.c",
+ "src/sse/oapv_sad_sse.c",
+ "src/sse/oapv_tq_sse.c",
+ ],
+ },
+
+ x86: {
+ local_include_dirs: [
+ "src/avx",
+ "src/sse",
+ ],
+
+ cflags: [
+ "-mavx2",
+ ],
+ srcs: [
+ "src/avx/oapv_sad_avx.c",
+ "src/avx/oapv_tq_avx.c",
+ "src/sse/oapv_sad_sse.c",
+ "src/sse/oapv_tq_sse.c",
+ ],
+ },
+ },
+
+ sanitize: {
+ integer_overflow: true,
+ misc_undefined: ["bounds"],
+ cfi: true,
+
+ config: {
+ cfi_assembly_support: true,
+ },
+ },
+
+ apex_available: [
+ "//apex_available:platform",
+ "com.android.media.swcodec",
+ ],
+ min_sdk_version: "apex_inherit",
+}
diff --git a/METADATA b/METADATA
new file mode 100644
index 0000000..b984eba
--- /dev/null
+++ b/METADATA
@@ -0,0 +1,16 @@
+name: "libopenapv"
+description:
+ "Open source APV Video Codec implementation"
+
+third_party {
+homepage: "https://github.com/openapv/openapv"
+ identifier {
+ type: "Git"
+ value: "https://github.com/openapv/openapv.git"
+ primary_source: true
+ version: "v0.1.4"
+ }
+ version: "v0.1.4"
+ last_upgrade_date { year: 2024 month: 10 day: 11 }
+ license_type: NOTICE
+}
\ No newline at end of file
diff --git a/MODULE_LICENSE_BSD b/MODULE_LICENSE_BSD
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/MODULE_LICENSE_BSD
diff --git a/OWNERS b/OWNERS
new file mode 100644
index 0000000..c956c29
--- /dev/null
+++ b/OWNERS
@@ -0,0 +1 @@
+include platform/system/core:main:/janitors/OWNERS
\ No newline at end of file
diff --git a/inc/oapv/oapv_exports.h b/inc/oapv/oapv_exports.h
new file mode 100644
index 0000000..22e6ef0
--- /dev/null
+++ b/inc/oapv/oapv_exports.h
@@ -0,0 +1,42 @@
+
+#ifndef OAPV_EXPORT_H
+#define OAPV_EXPORT_H
+
+#ifdef OAPV_STATIC_DEFINE
+# define OAPV_EXPORT
+# define OAPV_NO_EXPORT
+#else
+# ifndef OAPV_EXPORT
+# ifdef oapv_dynamic_EXPORTS
+ /* We are building this library */
+# define OAPV_EXPORT __attribute__((visibility("default")))
+# else
+ /* We are using this library */
+# define OAPV_EXPORT __attribute__((visibility("default")))
+# endif
+# endif
+
+# ifndef OAPV_NO_EXPORT
+# define OAPV_NO_EXPORT __attribute__((visibility("hidden")))
+# endif
+#endif
+
+#ifndef OAPV_DEPRECATED
+# define OAPV_DEPRECATED __attribute__ ((__deprecated__))
+#endif
+
+#ifndef OAPV_DEPRECATED_EXPORT
+# define OAPV_DEPRECATED_EXPORT OAPV_EXPORT OAPV_DEPRECATED
+#endif
+
+#ifndef OAPV_DEPRECATED_NO_EXPORT
+# define OAPV_DEPRECATED_NO_EXPORT OAPV_NO_EXPORT OAPV_DEPRECATED
+#endif
+
+#if 0 /* DEFINE_NO_DEPRECATED */
+# ifndef OAPV_NO_DEPRECATED
+# define OAPV_NO_DEPRECATED
+# endif
+#endif
+
+#endif /* OAPV_EXPORT_H */