Hamsalekha S | 8d3d303 | 2015-03-13 21:24:58 +0530 | [diff] [blame] | 1 | libavcd_inc_dir_arm += $(LOCAL_PATH)/decoder/arm |
| 2 | libavcd_inc_dir_arm += $(LOCAL_PATH)/common/arm |
| 3 | |
| 4 | libavcd_srcs_c_arm += decoder/arm/ih264d_function_selector.c |
Martin Storsjo | 29fe0e2 | 2015-05-20 10:00:45 +0300 | [diff] [blame] | 5 | libavcd_cflags_arm += -DARM |
Hamsalekha S | 8d3d303 | 2015-03-13 21:24:58 +0530 | [diff] [blame] | 6 | |
| 7 | #LOCAL_ARM_MODE := arm |
| 8 | |
| 9 | ifeq ($(ARCH_ARM_HAVE_NEON),true) |
| 10 | libavcd_srcs_c_arm += decoder/arm/ih264d_function_selector_a9q.c |
| 11 | |
| 12 | libavcd_srcs_asm_arm += common/arm/ih264_intra_pred_chroma_a9q.s |
| 13 | libavcd_srcs_asm_arm += common/arm/ih264_intra_pred_luma_16x16_a9q.s |
| 14 | libavcd_srcs_asm_arm += common/arm/ih264_intra_pred_luma_4x4_a9q.s |
| 15 | libavcd_srcs_asm_arm += common/arm/ih264_intra_pred_luma_8x8_a9q.s |
| 16 | libavcd_srcs_asm_arm += common/arm/ih264_inter_pred_chroma_a9q.s |
| 17 | libavcd_srcs_asm_arm += common/arm/ih264_inter_pred_filters_luma_horz_a9q.s |
| 18 | libavcd_srcs_asm_arm += common/arm/ih264_inter_pred_filters_luma_vert_a9q.s |
| 19 | libavcd_srcs_asm_arm += common/arm/ih264_inter_pred_luma_copy_a9q.s |
| 20 | libavcd_srcs_asm_arm += common/arm/ih264_inter_pred_luma_horz_qpel_a9q.s |
| 21 | libavcd_srcs_asm_arm += common/arm/ih264_inter_pred_luma_vert_qpel_a9q.s |
| 22 | libavcd_srcs_asm_arm += common/arm/ih264_inter_pred_luma_horz_hpel_vert_hpel_a9q.s |
| 23 | libavcd_srcs_asm_arm += common/arm/ih264_inter_pred_luma_horz_qpel_vert_qpel_a9q.s |
| 24 | libavcd_srcs_asm_arm += common/arm/ih264_inter_pred_luma_horz_qpel_vert_hpel_a9q.s |
| 25 | libavcd_srcs_asm_arm += common/arm/ih264_inter_pred_luma_horz_hpel_vert_qpel_a9q.s |
| 26 | libavcd_srcs_asm_arm += common/arm/ih264_default_weighted_pred_a9q.s |
| 27 | libavcd_srcs_asm_arm += common/arm/ih264_weighted_pred_a9q.s |
| 28 | libavcd_srcs_asm_arm += common/arm/ih264_weighted_bi_pred_a9q.s |
| 29 | libavcd_srcs_asm_arm += common/arm/ih264_deblk_chroma_a9.s |
| 30 | libavcd_srcs_asm_arm += common/arm/ih264_deblk_luma_a9.s |
| 31 | libavcd_srcs_asm_arm += common/arm/ih264_padding_neon.s |
| 32 | libavcd_srcs_asm_arm += common/arm/ih264_iquant_itrans_recon_a9.s |
| 33 | libavcd_srcs_asm_arm += common/arm/ih264_iquant_itrans_recon_dc_a9.s |
| 34 | libavcd_srcs_asm_arm += common/arm/ih264_ihadamard_scaling_a9.s |
Hamsalekha S | 8d3d303 | 2015-03-13 21:24:58 +0530 | [diff] [blame] | 35 | |
| 36 | libavcd_cflags_arm += -DDEFAULT_ARCH=D_ARCH_ARM_A9Q |
| 37 | else |
| 38 | libavcd_cflags_arm += -DDISABLE_NEON -DDEFAULT_ARCH=D_ARCH_ARM_NONEON |
| 39 | endif |
| 40 | |
Lajos Molnar | 7023f4d | 2015-04-16 11:37:41 -0700 | [diff] [blame] | 41 | libavcd_srcs_asm_arm += common/arm/ih264_arm_memory_barrier.s |
| 42 | |
Hamsalekha S | 8d3d303 | 2015-03-13 21:24:58 +0530 | [diff] [blame] | 43 | LOCAL_SRC_FILES_arm += $(libavcd_srcs_c_arm) $(libavcd_srcs_asm_arm) |
| 44 | LOCAL_C_INCLUDES_arm += $(libavcd_inc_dir_arm) |
| 45 | LOCAL_CFLAGS_arm += $(libavcd_cflags_arm) |