-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathMakefile.am
148 lines (137 loc) · 5.63 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
lib_LTLIBRARIES = libmpeghd.la
libmpeghd_la_SOURCES = decoder/ia_core_coder_acelp_bitparse.c\
decoder/ia_core_coder_acelp_decode.c\
decoder/ia_core_coder_acelp_mdct.c\
decoder/ia_core_coder_acelp_tools.c\
decoder/ia_core_coder_arith_dec.c\
decoder/ia_core_coder_avq_dec.c\
decoder/ia_core_coder_avq_rom.c\
decoder/ia_core_coder_basic_ops.c\
decoder/ia_core_coder_bitbuffer.c\
decoder/ia_core_coder_common_initfuncs.c\
decoder/ia_core_coder_create.c\
decoder/ia_core_coder_decode_main.c\
decoder/ia_core_coder_env_extr.c\
decoder/ia_core_coder_ext_ch_ele.c\
decoder/ia_core_coder_function_selector.c\
decoder/ia_core_coder_fwd_alias_cnx.c\
decoder/ia_core_coder_headerdecode.c\
decoder/ia_core_coder_hufftables_rom.c\
decoder/ia_core_coder_huff_tools.c\
decoder/ia_core_coder_igf_dec.c\
decoder/ia_core_coder_imdct.c\
decoder/ia_core_coder_init_config.c\
decoder/ia_core_coder_lpc.c\
decoder/ia_core_coder_lpc_dec.c\
decoder/ia_core_coder_ltpf.c\
decoder/ia_core_coder_process.c\
decoder/ia_core_coder_rom.c\
decoder/ia_core_coder_spectrum_dec.c\
decoder/ia_core_coder_stereo_lpd.c\
decoder/ia_core_coder_tcx_fwd_alcnx.c\
decoder/ia_core_coder_tcx_fwd_mdct.c\
decoder/ia_core_coder_windowing.c\
decoder/impd_drc_dynamic_payload.c\
decoder/impd_drc_extr_delta_coded_info.c\
decoder/impd_drc_filter_bank.c\
decoder/impd_drc_gain_dec.c\
decoder/impd_drc_host_params.c\
decoder/impd_drc_init.c\
decoder/impd_drc_loudness_control.c\
decoder/impd_drc_multiband.c\
decoder/impd_drc_process.c\
decoder/impd_drc_rom.c\
decoder/impd_drc_selection_process.c\
decoder/impd_drc_selection_process_drcset_selection.c\
decoder/impd_drc_selection_process_init.c\
decoder/impd_drc_static_payload.c\
decoder/impeghd_3d_vec_basic_ops.c\
decoder/impeghd_api.c\
decoder/impeghd_binaural.c\
decoder/impeghd_binaural_filter_design.c\
decoder/impeghd_binaural_renderer.c\
decoder/impeghd_cicp_2_geometry.c\
decoder/impeghd_cicp_2_geometry_rom.c\
decoder/impeghd_dmx_mtx.c\
decoder/impeghd_ele_interaction_intrfc.c\
decoder/impeghd_ext_rend_intrfc.c\
decoder/impeghd_ext_rend_intrfc_util.c\
decoder/impeghd_fft.c\
decoder/impeghd_fft_ifft_rom.c\
decoder/impeghd_format_conv_init.c\
decoder/impeghd_format_conv_rom.c\
decoder/impeghd_hoa_amb_syn.c\
decoder/impeghd_hoa_ch_reassignment.c\
decoder/impeghd_hoa_common_functions.c\
decoder/impeghd_hoa_config.c\
decoder/impeghd_hoa_dec_init.c\
decoder/impeghd_hoa_decoder.c\
decoder/impeghd_hoa_dir_based_pre_dom_sound_syn.c\
decoder/impeghd_hoa_frame.c\
decoder/impeghd_hoa_inverse_dyn_correction.c\
decoder/impeghd_hoa_matrix.c\
decoder/impeghd_hoa_nfc_filtering.c\
decoder/impeghd_hoa_pre_dom_sound_syn.c\
decoder/impeghd_hoa_renderer.c\
decoder/impeghd_hoa_render_mtrx.c\
decoder/impeghd_hoa_robust_pan.c\
decoder/impeghd_hoa_rom.c\
decoder/impeghd_hoa_simple_mtrx.c\
decoder/impeghd_hoa_space_positions.c\
decoder/impeghd_hoa_spatial_decoder.c\
decoder/impeghd_hoa_vector_based_predom_sound_syn.c\
decoder/impeghd_ifft.c\
decoder/impeghd_inv_mtx_cicp_rom.c\
decoder/impeghd_mae_mp4_intrfc.c\
decoder/impeghd_metadata_preprocessor.c\
decoder/impeghd_metadata_preprocessor_rom.c\
decoder/impeghd_mhas_parse.c\
decoder/impeghd_multichannel.c\
decoder/impeghd_multichannel_rom.c\
decoder/impeghd_oam_dec.c\
decoder/impeghd_oam_dec_ld.c\
decoder/impeghd_obj_ren_dec.c\
decoder/impeghd_obj_ren_vbap.c\
decoder/impeghd_peak_limiter.c\
decoder/impeghd_resampler.c\
decoder/impeghd_resampler_rom.c\
decoder/impeghd_scene_displacement.c\
decoder/impeghd_tbe_dec.c\
decoder/impeghd_tbe_rom.c\
decoder/ia_core_coder_tns.c
if X86_64
libmpeghd_la_CFLAGS = -O3 -Wall -Wsequence-point -Wunused-function -D_X86_
libmpeghd_la_CFLAGS += -I$(top_srcdir)/decoder/x86_64 -I$(top_srcdir)/decoder -I$(top_srcdir)/test
ia_mpeghd_testbench_CFLAGS = -O3 -Wall -Wsequence-point -Wunused-function -D_X86_
ia_mpeghd_testbench_CFLAGS += -I$(top_srcdir)/decoder/x86_64 -I$(top_srcdir)/decoder -I$(top_srcdir)/test -I$(top_srcdir)/test/mp4
endif
if X86
libmpeghd_la_CFLAGS = -m32 -O3 -Wall -Wsequence-point -Wunused-function -D_X86_
libmpeghd_la_CFLAGS += -I$(top_srcdir)/decoder/x86 -I$(top_srcdir)/decoder -I$(top_srcdir)/test
ia_mpeghd_testbench_CFLAGS = -O3 -m32 -Wall -Wsequence-point -Wunused-function -flto -D_X86_
ia_mpeghd_testbench_CFLAGS += -I$(top_srcdir)/decoder/x86 -I$(top_srcdir)/decoder -I$(top_srcdir)/test -I$(top_srcdir)/test/mp4
endif
if ARMV8
libmpeghd_la_CFLAGS = -O3 -march=armv8-a -Wall -Wsequence-point -Wunused-function -D_ARM_ --std=gnu99
libmpeghd_la_CFLAGS += -I$(top_srcdir)/decoder/armv8 -I$(top_srcdir)/decoder -I$(top_srcdir)/test
ia_mpeghd_testbench_CFLAGS = -O3 -march=armv8-a -Wall -Wsequence-point -Wunused-function -D_ARM_ --std=gnu99
ia_mpeghd_testbench_CFLAGS += -I$(top_srcdir)/decoder/armv8 -I$(top_srcdir)/decoder -I$(top_srcdir)/test -I$(top_srcdir)/test/mp4
endif
if ARMV7
libmpeghd_la_CFLAGS = -O3 -mcpu=cortex-a8 -Wall -Wsequence-point -Wunused-function --std=gnu99 -D_ARM_ -mfloat-abi=hard
libmpeghd_la_CFLAGS += -I$(top_srcdir)/decoder -I$(top_srcdir)/test
ia_mpeghd_testbench_CFLAGS = -O3 -mcpu=cortex-a8 -Wall -Wsequence-point -Wunused-function --std=gnu99 -D_ARM_ -mfloat-abi=hard
ia_mpeghd_testbench_CFLAGS += -I$(top_srcdir)/decoder -I$(top_srcdir)/test -I$(top_srcdir)/test/mp4
endif
bin_PROGRAMS = ia_mpeghd_testbench
LD_ADD = -lm
ia_mpeghd_testbench_SOURCES = test/impeghd_error.c\
test/impeghd_main.c\
test/mp4/impeghd_mp4_file.c\
test/mp4/impeghd_mp4_file_wrapper.c\
test/mp4/impeghd_mp4_init.c\
test/mp4/impeghd_mp4_mae_parser.c\
test/mp4/impeghd_mp4_parser.c\
test/mp4/impeghd_mp4_utils.c\
test/mp4/impeghd_mp4_video.c
ia_mpeghd_testbench_LDADD = libmpeghd.la -lm