aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2017-04-20 16:42:47 -0700
committerColin Cross <ccross@android.com>2017-05-01 15:05:35 -0700
commit3f774369418af612f3f70686fdf5b2fb05505e4e (patch)
tree8770311a7f597b58d60612e936162a3facf817d9 /Android.bp
parent09ea1a98b10c5cdc278ee4fe9511532b94d5df17 (diff)
downloadlibhevc-3f774369418af612f3f70686fdf5b2fb05505e4e.tar.gz
See build/soong/README.md for more information. Test: m -j checkbuild Change-Id: I6d36a69745c4bc0f5490f50517db0560d98e2b10
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp385
1 files changed, 385 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..3389259
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,385 @@
+cc_library_static {
+ name: "libhevcdec",
+
+ cflags: [
+ "-D_LIB",
+ "-DMULTICORE",
+ "-fPIC",
+
+ "-O3",
+ "-DANDROID",
+ ],
+
+ export_include_dirs: [
+ "decoder",
+ "common",
+ ],
+
+ srcs: [
+ "common/ihevc_quant_tables.c",
+ "common/ihevc_inter_pred_filters.c",
+ "common/ihevc_weighted_pred.c",
+ "common/ihevc_padding.c",
+ "common/ihevc_deblk_edge_filter.c",
+ "common/ihevc_deblk_tables.c",
+ "common/ihevc_cabac_tables.c",
+ "common/ihevc_common_tables.c",
+ "common/ihevc_intra_pred_filters.c",
+ "common/ihevc_chroma_intra_pred_filters.c",
+ "common/ihevc_mem_fns.c",
+ "common/ihevc_sao.c",
+ "common/ihevc_trans_tables.c",
+ "common/ihevc_recon.c",
+ "common/ihevc_itrans.c",
+ "common/ihevc_itrans_recon.c",
+ "common/ihevc_iquant_recon.c",
+ "common/ihevc_iquant_itrans_recon.c",
+ "common/ihevc_itrans_recon_32x32.c",
+ "common/ihevc_itrans_recon_16x16.c",
+ "common/ihevc_itrans_recon_8x8.c",
+ "common/ihevc_chroma_itrans_recon.c",
+ "common/ihevc_chroma_iquant_recon.c",
+ "common/ihevc_chroma_iquant_itrans_recon.c",
+ "common/ihevc_chroma_recon.c",
+ "common/ihevc_chroma_itrans_recon_16x16.c",
+ "common/ihevc_chroma_itrans_recon_8x8.c",
+ "common/ihevc_buf_mgr.c",
+ "common/ihevc_disp_mgr.c",
+ "common/ihevc_dpb_mgr.c",
+ "common/ithread.c",
+ "decoder/ihevcd_version.c",
+ "decoder/ihevcd_api.c",
+ "decoder/ihevcd_decode.c",
+ "decoder/ihevcd_nal.c",
+ "decoder/ihevcd_bitstream.c",
+ "decoder/ihevcd_parse_headers.c",
+ "decoder/ihevcd_parse_slice_header.c",
+ "decoder/ihevcd_parse_slice.c",
+ "decoder/ihevcd_parse_residual.c",
+ "decoder/ihevcd_cabac.c",
+ "decoder/ihevcd_intra_pred_mode_prediction.c",
+ "decoder/ihevcd_process_slice.c",
+ "decoder/ihevcd_utils.c",
+ "decoder/ihevcd_job_queue.c",
+ "decoder/ihevcd_ref_list.c",
+ "decoder/ihevcd_get_mv.c",
+ "decoder/ihevcd_mv_pred.c",
+ "decoder/ihevcd_mv_merge.c",
+ "decoder/ihevcd_iquant_itrans_recon_ctb.c",
+ "decoder/ihevcd_itrans_recon_dc.c",
+ "decoder/ihevcd_common_tables.c",
+ "decoder/ihevcd_boundary_strength.c",
+ "decoder/ihevcd_deblk.c",
+ "decoder/ihevcd_inter_pred.c",
+ "decoder/ihevcd_sao.c",
+ "decoder/ihevcd_ilf_padding.c",
+ "decoder/ihevcd_fmt_conv.c",
+ ],
+
+ arch: {
+ arm64: {
+ cflags: [
+ "-DARMV8",
+ "-DDISABLE_NEONINTR",
+ "-DARM",
+ "-DARMGCC",
+
+ "-DDEFAULT_ARCH=D_ARCH_ARMV8_GENERIC",
+ ],
+ local_include_dirs: [
+ "decoder/arm",
+ "common/arm",
+ "decoder/arm64",
+ "common/arm64",
+ ],
+
+ srcs: [
+ "decoder/arm/ihevcd_function_selector.c",
+ "decoder/arm/ihevcd_function_selector_noneon.c",
+ "decoder/arm64/ihevcd_function_selector_av8.c",
+ "common/arm/ihevc_intra_pred_filters_neon_intr.c",
+ "common/arm/ihevc_weighted_pred_neon_intr.c",
+ "common/arm64/ihevc_mem_fns.s",
+ "common/arm64/ihevc_itrans_recon_32x32.s",
+ "common/arm64/ihevc_weighted_pred_bi_default.s",
+ "common/arm64/ihevc_weighted_pred_bi.s",
+ "common/arm64/ihevc_weighted_pred_uni.s",
+ "common/arm64/ihevc_deblk_luma_horz.s",
+ "common/arm64/ihevc_deblk_luma_vert.s",
+ "common/arm64/ihevc_deblk_chroma_vert.s",
+ "common/arm64/ihevc_deblk_chroma_horz.s",
+ "common/arm64/ihevc_sao_band_offset_luma.s",
+ "common/arm64/ihevc_sao_band_offset_chroma.s",
+ "common/arm64/ihevc_sao_edge_offset_class0.s",
+ "common/arm64/ihevc_sao_edge_offset_class0_chroma.s",
+ "common/arm64/ihevc_sao_edge_offset_class1.s",
+ "common/arm64/ihevc_sao_edge_offset_class1_chroma.s",
+ "common/arm64/ihevc_sao_edge_offset_class2.s",
+ "common/arm64/ihevc_sao_edge_offset_class2_chroma.s",
+ "common/arm64/ihevc_sao_edge_offset_class3.s",
+ "common/arm64/ihevc_sao_edge_offset_class3_chroma.s",
+ "common/arm64/ihevc_inter_pred_luma_horz_w16out.s",
+ "common/arm64/ihevc_inter_pred_filters_luma_horz.s",
+ "common/arm64/ihevc_inter_pred_filters_luma_vert.s",
+ "common/arm64/ihevc_inter_pred_chroma_horz.s",
+ "common/arm64/ihevc_inter_pred_chroma_horz_w16out.s",
+ "common/arm64/ihevc_inter_pred_chroma_vert.s",
+ "common/arm64/ihevc_inter_pred_chroma_vert_w16out.s",
+ "common/arm64/ihevc_inter_pred_chroma_vert_w16inp.s",
+ "common/arm64/ihevc_inter_pred_chroma_vert_w16inp_w16out.s",
+ "common/arm64/ihevc_inter_pred_filters_luma_vert_w16inp.s",
+ "common/arm64/ihevc_inter_pred_filters_luma_vert_w16out.s",
+ "common/arm64/ihevc_inter_pred_luma_vert_w16inp_w16out.s",
+ "common/arm64/ihevc_inter_pred_luma_copy_w16out.s",
+ "common/arm64/ihevc_inter_pred_luma_copy.s",
+ "common/arm64/ihevc_inter_pred_chroma_copy.s",
+ "common/arm64/ihevc_inter_pred_chroma_copy_w16out.s",
+ "common/arm64/ihevc_itrans_recon_4x4_ttype1.s",
+ "common/arm64/ihevc_itrans_recon_4x4.s",
+ "common/arm64/ihevc_itrans_recon_8x8.s",
+ "common/arm64/ihevc_itrans_recon_16x16.s",
+ "common/arm64/ihevc_intra_pred_chroma_planar.s",
+ "common/arm64/ihevc_intra_pred_chroma_dc.s",
+ "common/arm64/ihevc_intra_pred_chroma_horz.s",
+ "common/arm64/ihevc_intra_pred_chroma_ver.s",
+ "common/arm64/ihevc_intra_pred_chroma_mode2.s",
+ "common/arm64/ihevc_intra_pred_chroma_mode_18_34.s",
+ "common/arm64/ihevc_intra_pred_filters_chroma_mode_11_to_17.s",
+ "common/arm64/ihevc_intra_pred_filters_chroma_mode_19_to_25.s",
+ "common/arm64/ihevc_intra_pred_chroma_mode_3_to_9.s",
+ "common/arm64/ihevc_intra_pred_chroma_mode_27_to_33.s",
+ "common/arm64/ihevc_intra_pred_luma_planar.s",
+ "common/arm64/ihevc_intra_pred_luma_horz.s",
+ "common/arm64/ihevc_intra_pred_luma_mode2.s",
+ "common/arm64/ihevc_intra_pred_luma_mode_27_to_33.s",
+ "common/arm64/ihevc_intra_pred_luma_mode_18_34.s",
+ "common/arm64/ihevc_intra_pred_luma_vert.s",
+ "common/arm64/ihevc_intra_pred_luma_dc.s",
+ "common/arm64/ihevc_intra_pred_filters_luma_mode_11_to_17.s",
+ "common/arm64/ihevc_intra_pred_filters_luma_mode_19_to_25.s",
+ "common/arm64/ihevc_intra_pred_luma_mode_3_to_9.s",
+ "common/arm64/ihevc_padding.s",
+ "decoder/arm64/ihevcd_itrans_recon_dc_luma.s",
+ "decoder/arm64/ihevcd_itrans_recon_dc_chroma.s",
+ "decoder/arm64/ihevcd_fmt_conv_420sp_to_420p.s",
+ "decoder/arm64/ihevcd_fmt_conv_420sp_to_420sp.s",
+ "decoder/arm64/ihevcd_fmt_conv_420sp_to_rgba8888.s",
+ ],
+ },
+
+ arm: {
+ local_include_dirs: [
+ "decoder/arm",
+ "common/arm",
+ ],
+
+ srcs: [
+ "decoder/arm/ihevcd_function_selector.c",
+ "decoder/arm/ihevcd_function_selector_noneon.c",
+ ],
+
+ cflags: [
+ "-DDISABLE_NEONINTR",
+ "-DARM",
+ "-DARMGCC",
+ "-fno-tree-vectorize",
+
+ // These will be overriden by armv7_a_neon
+ "-DDISABLE_NEON",
+ "-DDEFAULT_ARCH=D_ARCH_ARM_NONEON",
+ ],
+
+ instruction_set: "arm",
+
+ armv7_a_neon: {
+ srcs: [
+ "decoder/arm/ihevcd_function_selector_a9q.c",
+ "common/arm/ihevc_intra_ref_substitution_a9q.c",
+ "common/arm/ihevc_intra_pred_filters_neon_intr.c",
+ "common/arm/ihevc_weighted_pred_neon_intr.c",
+ "common/arm/ihevc_mem_fns.s",
+ "common/arm/ihevc_itrans_recon_32x32.s",
+ "common/arm/ihevc_weighted_pred_bi_default.s",
+ "common/arm/ihevc_weighted_pred_bi.s",
+ "common/arm/ihevc_weighted_pred_uni.s",
+ "common/arm/ihevc_deblk_luma_horz.s",
+ "common/arm/ihevc_deblk_luma_vert.s",
+ "common/arm/ihevc_deblk_chroma_vert.s",
+ "common/arm/ihevc_deblk_chroma_horz.s",
+ "common/arm/ihevc_sao_band_offset_luma.s",
+ "common/arm/ihevc_sao_band_offset_chroma.s",
+ "common/arm/ihevc_sao_edge_offset_class0.s",
+ "common/arm/ihevc_sao_edge_offset_class0_chroma.s",
+ "common/arm/ihevc_sao_edge_offset_class1.s",
+ "common/arm/ihevc_sao_edge_offset_class1_chroma.s",
+ "common/arm/ihevc_sao_edge_offset_class2.s",
+ "common/arm/ihevc_sao_edge_offset_class2_chroma.s",
+ "common/arm/ihevc_sao_edge_offset_class3.s",
+ "common/arm/ihevc_sao_edge_offset_class3_chroma.s",
+ "common/arm/ihevc_inter_pred_luma_horz_w16out.s",
+ "common/arm/ihevc_inter_pred_filters_luma_horz.s",
+ "common/arm/ihevc_inter_pred_filters_luma_vert.s",
+ "common/arm/ihevc_inter_pred_chroma_horz.s",
+ "common/arm/ihevc_inter_pred_chroma_horz_w16out.s",
+ "common/arm/ihevc_inter_pred_chroma_vert.s",
+ "common/arm/ihevc_inter_pred_chroma_vert_w16out.s",
+ "common/arm/ihevc_inter_pred_chroma_vert_w16inp.s",
+ "common/arm/ihevc_inter_pred_chroma_vert_w16inp_w16out.s",
+ "common/arm/ihevc_inter_pred_filters_luma_vert_w16inp.s",
+ "common/arm/ihevc_inter_pred_luma_vert_w16inp_w16out.s",
+ "common/arm/ihevc_inter_pred_luma_copy_w16out.s",
+ "common/arm/ihevc_inter_pred_luma_copy.s",
+ "common/arm/ihevc_inter_pred_chroma_copy.s",
+ "common/arm/ihevc_inter_pred_chroma_copy_w16out.s",
+ "common/arm/ihevc_itrans_recon_4x4_ttype1.s",
+ "common/arm/ihevc_itrans_recon_4x4.s",
+ "common/arm/ihevc_itrans_recon_8x8.s",
+ "common/arm/ihevc_itrans_recon_16x16.s",
+ "common/arm/ihevc_intra_pred_chroma_planar.s",
+ "common/arm/ihevc_intra_pred_chroma_dc.s",
+ "common/arm/ihevc_intra_pred_chroma_horz.s",
+ "common/arm/ihevc_intra_pred_chroma_ver.s",
+ "common/arm/ihevc_intra_pred_chroma_mode2.s",
+ "common/arm/ihevc_intra_pred_chroma_mode_18_34.s",
+ "common/arm/ihevc_intra_pred_filters_chroma_mode_11_to_17.s",
+ "common/arm/ihevc_intra_pred_filters_chroma_mode_19_to_25.s",
+ "common/arm/ihevc_intra_pred_chroma_mode_3_to_9.s",
+ "common/arm/ihevc_intra_pred_chroma_mode_27_to_33.s",
+ "common/arm/ihevc_intra_pred_luma_planar.s",
+ "common/arm/ihevc_intra_pred_luma_horz.s",
+ "common/arm/ihevc_intra_pred_luma_mode2.s",
+ "common/arm/ihevc_intra_pred_luma_mode_27_to_33.s",
+ "common/arm/ihevc_intra_pred_luma_mode_18_34.s",
+ "common/arm/ihevc_intra_pred_luma_vert.s",
+ "common/arm/ihevc_intra_pred_luma_dc.s",
+ "common/arm/ihevc_intra_pred_filters_luma_mode_11_to_17.s",
+ "common/arm/ihevc_intra_pred_filters_luma_mode_19_to_25.s",
+ "common/arm/ihevc_intra_pred_luma_mode_3_to_9.s",
+ "common/arm/ihevc_padding.s",
+ "decoder/arm/ihevcd_itrans_recon_dc_luma.s",
+ "decoder/arm/ihevcd_itrans_recon_dc_chroma.s",
+ "decoder/arm/ihevcd_fmt_conv_420sp_to_420p.s",
+ "decoder/arm/ihevcd_fmt_conv_420sp_to_420sp.s",
+ "decoder/arm/ihevcd_fmt_conv_420sp_to_rgba8888.s",
+ ],
+ cflags: [
+ "-UDISABLE_NEON",
+ "-UDEFAULT_ARCH",
+ "-DDEFAULT_ARCH=D_ARCH_ARM_A9Q",
+ ],
+ },
+ },
+
+ mips64: {
+ local_include_dirs: [
+ "decoder/mips",
+ "common/mips",
+ ],
+
+ srcs: [
+ "decoder/mips/ihevcd_function_selector.c",
+ "decoder/mips/ihevcd_function_selector_mips_generic.c",
+ ],
+ },
+
+ mips: {
+ local_include_dirs: [
+ "decoder/mips",
+ "common/mips",
+ ],
+
+ srcs: [
+ "decoder/mips/ihevcd_function_selector.c",
+ "decoder/mips/ihevcd_function_selector_mips_generic.c",
+ ],
+ },
+
+ x86_64: {
+ cflags: [
+ "-DX86",
+ "-DDISABLE_AVX2",
+ "-msse4.2",
+ "-mno-avx",
+ "-DDEFAULT_ARCH=D_ARCH_X86_SSE42",
+ ],
+
+ local_include_dirs: [
+ "decoder/x86",
+ "common/x86",
+ ],
+
+ srcs: [
+ "decoder/x86/ihevcd_function_selector.c",
+ "decoder/x86/ihevcd_function_selector_generic.c",
+ "decoder/x86/ihevcd_function_selector_ssse3.c",
+ "decoder/x86/ihevcd_function_selector_sse42.c",
+ "common/x86/ihevc_inter_pred_filters_ssse3_intr.c",
+ "common/x86/ihevc_weighted_pred_ssse3_intr.c",
+ "common/x86/ihevc_intra_pred_filters_ssse3_intr.c",
+ "common/x86/ihevc_chroma_intra_pred_filters_ssse3_intr.c",
+ "common/x86/ihevc_itrans_recon_ssse3_intr.c",
+ "common/x86/ihevc_itrans_recon_16x16_ssse3_intr.c",
+ "common/x86/ihevc_itrans_recon_32x32_ssse3_intr.c",
+ "common/x86/ihevc_sao_ssse3_intr.c",
+ "common/x86/ihevc_deblk_ssse3_intr.c",
+ "common/x86/ihevc_padding_ssse3_intr.c",
+ "common/x86/ihevc_mem_fns_ssse3_intr.c",
+ "decoder/x86/ihevcd_fmt_conv_ssse3_intr.c",
+ "decoder/x86/ihevcd_it_rec_dc_ssse3_intr.c",
+ "common/x86/ihevc_inter_pred_filters_sse42_intr.c",
+ "common/x86/ihevc_weighted_pred_sse42_intr.c",
+ "common/x86/ihevc_intra_pred_filters_sse42_intr.c",
+ "common/x86/ihevc_chroma_intra_pred_filters_sse42_intr.c",
+ "common/x86/ihevc_itrans_recon_sse42_intr.c",
+ "common/x86/ihevc_16x16_itrans_recon_sse42_intr.c",
+ "common/x86/ihevc_32x32_itrans_recon_sse42_intr.c",
+ "decoder/x86/ihevcd_it_rec_dc_sse42_intr.c",
+ "common/x86/ihevc_tables_x86_intr.c",
+ ],
+ },
+
+ x86: {
+ cflags: [
+ "-DX86",
+ "-DDISABLE_AVX2",
+ "-msse4.2",
+ "-mno-avx",
+ "-DDEFAULT_ARCH=D_ARCH_X86_SSE42",
+ ],
+
+ local_include_dirs: [
+ "decoder/x86",
+ "common/x86",
+ ],
+
+ srcs: [
+ "decoder/x86/ihevcd_function_selector.c",
+ "decoder/x86/ihevcd_function_selector_generic.c",
+ "decoder/x86/ihevcd_function_selector_ssse3.c",
+ "decoder/x86/ihevcd_function_selector_sse42.c",
+ "common/x86/ihevc_inter_pred_filters_ssse3_intr.c",
+ "common/x86/ihevc_weighted_pred_ssse3_intr.c",
+ "common/x86/ihevc_intra_pred_filters_ssse3_intr.c",
+ "common/x86/ihevc_chroma_intra_pred_filters_ssse3_intr.c",
+ "common/x86/ihevc_itrans_recon_ssse3_intr.c",
+ "common/x86/ihevc_itrans_recon_16x16_ssse3_intr.c",
+ "common/x86/ihevc_itrans_recon_32x32_ssse3_intr.c",
+ "common/x86/ihevc_sao_ssse3_intr.c",
+ "common/x86/ihevc_deblk_ssse3_intr.c",
+ "common/x86/ihevc_padding_ssse3_intr.c",
+ "common/x86/ihevc_mem_fns_ssse3_intr.c",
+ "decoder/x86/ihevcd_fmt_conv_ssse3_intr.c",
+ "decoder/x86/ihevcd_it_rec_dc_ssse3_intr.c",
+ "common/x86/ihevc_inter_pred_filters_sse42_intr.c",
+ "common/x86/ihevc_weighted_pred_sse42_intr.c",
+ "common/x86/ihevc_intra_pred_filters_sse42_intr.c",
+ "common/x86/ihevc_chroma_intra_pred_filters_sse42_intr.c",
+ "common/x86/ihevc_itrans_recon_sse42_intr.c",
+ "common/x86/ihevc_16x16_itrans_recon_sse42_intr.c",
+ "common/x86/ihevc_32x32_itrans_recon_sse42_intr.c",
+ "decoder/x86/ihevcd_it_rec_dc_sse42_intr.c",
+ "common/x86/ihevc_tables_x86_intr.c",
+ ],
+ },
+ },
+}