Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
michael@0 | 1 | # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
michael@0 | 2 | # |
michael@0 | 3 | # Use of this source code is governed by a BSD-style license |
michael@0 | 4 | # that can be found in the LICENSE file in the root of the source |
michael@0 | 5 | # tree. An additional intellectual property rights grant can be found |
michael@0 | 6 | # in the file PATENTS. All contributing project authors may |
michael@0 | 7 | # be found in the AUTHORS file in the root of the source tree. |
michael@0 | 8 | |
michael@0 | 9 | { |
michael@0 | 10 | 'targets': [ |
michael@0 | 11 | { |
michael@0 | 12 | 'target_name': 'opus', |
michael@0 | 13 | 'type': '<(library)', |
michael@0 | 14 | 'defines': [ |
michael@0 | 15 | 'OPUS_BUILD', |
michael@0 | 16 | 'FLOATING_POINT', |
michael@0 | 17 | 'VAR_ARRAYS', |
michael@0 | 18 | ], |
michael@0 | 19 | 'conditions': [ |
michael@0 | 20 | ['OS=="linux"', { |
michael@0 | 21 | 'cflags': [ |
michael@0 | 22 | '-std=c99', |
michael@0 | 23 | ], |
michael@0 | 24 | 'cflags_mozilla': [ |
michael@0 | 25 | '-std=c99', |
michael@0 | 26 | ], |
michael@0 | 27 | 'defines': [ |
michael@0 | 28 | 'HAVE_LRINTF', |
michael@0 | 29 | ], |
michael@0 | 30 | }] |
michael@0 | 31 | ], |
michael@0 | 32 | |
michael@0 | 33 | 'include_dirs': [ |
michael@0 | 34 | 'source/include', |
michael@0 | 35 | 'source/src', |
michael@0 | 36 | 'source/celt', |
michael@0 | 37 | 'source/silk', |
michael@0 | 38 | 'source/silk/float', |
michael@0 | 39 | ], |
michael@0 | 40 | 'sources': [ |
michael@0 | 41 | # opus wrapper/glue |
michael@0 | 42 | 'source/src/opus.c', |
michael@0 | 43 | 'source/src/opus_decoder.c', |
michael@0 | 44 | 'source/src/opus_encoder.c', |
michael@0 | 45 | 'source/src/repacketizer.c', |
michael@0 | 46 | |
michael@0 | 47 | # celt sub-codec |
michael@0 | 48 | 'source/celt/bands.c', |
michael@0 | 49 | 'source/celt/celt.c', |
michael@0 | 50 | 'source/celt/cwrs.c', |
michael@0 | 51 | 'source/celt/entcode.c', |
michael@0 | 52 | 'source/celt/entdec.c', |
michael@0 | 53 | 'source/celt/entenc.c', |
michael@0 | 54 | 'source/celt/kiss_fft.c', |
michael@0 | 55 | 'source/celt/laplace.c', |
michael@0 | 56 | 'source/celt/mathops.c', |
michael@0 | 57 | 'source/celt/mdct.c', |
michael@0 | 58 | 'source/celt/modes.c', |
michael@0 | 59 | 'source/celt/pitch.c', |
michael@0 | 60 | 'source/celt/celt_lpc.c', |
michael@0 | 61 | 'source/celt/quant_bands.c', |
michael@0 | 62 | 'source/celt/rate.c', |
michael@0 | 63 | 'source/celt/vq.c', |
michael@0 | 64 | |
michael@0 | 65 | # silk sub-codec |
michael@0 | 66 | 'source/silk/CNG.c', |
michael@0 | 67 | 'source/silk/code_signs.c', |
michael@0 | 68 | 'source/silk/init_decoder.c', |
michael@0 | 69 | 'source/silk/decode_core.c', |
michael@0 | 70 | 'source/silk/decode_frame.c', |
michael@0 | 71 | 'source/silk/decode_parameters.c', |
michael@0 | 72 | 'source/silk/decode_indices.c', |
michael@0 | 73 | 'source/silk/decode_pulses.c', |
michael@0 | 74 | 'source/silk/decoder_set_fs.c', |
michael@0 | 75 | 'source/silk/dec_API.c', |
michael@0 | 76 | 'source/silk/enc_API.c', |
michael@0 | 77 | 'source/silk/encode_indices.c', |
michael@0 | 78 | 'source/silk/encode_pulses.c', |
michael@0 | 79 | 'source/silk/gain_quant.c', |
michael@0 | 80 | 'source/silk/interpolate.c', |
michael@0 | 81 | 'source/silk/LP_variable_cutoff.c', |
michael@0 | 82 | 'source/silk/NLSF_decode.c', |
michael@0 | 83 | 'source/silk/NSQ.c', |
michael@0 | 84 | 'source/silk/NSQ_del_dec.c', |
michael@0 | 85 | 'source/silk/PLC.c', |
michael@0 | 86 | 'source/silk/shell_coder.c', |
michael@0 | 87 | 'source/silk/tables_gain.c', |
michael@0 | 88 | 'source/silk/tables_LTP.c', |
michael@0 | 89 | 'source/silk/tables_NLSF_CB_NB_MB.c', |
michael@0 | 90 | 'source/silk/tables_NLSF_CB_WB.c', |
michael@0 | 91 | 'source/silk/tables_other.c', |
michael@0 | 92 | 'source/silk/tables_pitch_lag.c', |
michael@0 | 93 | 'source/silk/tables_pulses_per_block.c', |
michael@0 | 94 | 'source/silk/VAD.c', |
michael@0 | 95 | 'source/silk/control_audio_bandwidth.c', |
michael@0 | 96 | 'source/silk/quant_LTP_gains.c', |
michael@0 | 97 | 'source/silk/VQ_WMat_EC.c', |
michael@0 | 98 | 'source/silk/HP_variable_cutoff.c', |
michael@0 | 99 | 'source/silk/NLSF_encode.c', |
michael@0 | 100 | 'source/silk/NLSF_VQ.c', |
michael@0 | 101 | 'source/silk/NLSF_unpack.c', |
michael@0 | 102 | 'source/silk/NLSF_del_dec_quant.c', |
michael@0 | 103 | 'source/silk/process_NLSFs.c', |
michael@0 | 104 | 'source/silk/stereo_LR_to_MS.c', |
michael@0 | 105 | 'source/silk/stereo_MS_to_LR.c', |
michael@0 | 106 | 'source/silk/check_control_input.c', |
michael@0 | 107 | 'source/silk/control_SNR.c', |
michael@0 | 108 | 'source/silk/init_encoder.c', |
michael@0 | 109 | 'source/silk/control_codec.c', |
michael@0 | 110 | 'source/silk/A2NLSF.c', |
michael@0 | 111 | 'source/silk/ana_filt_bank_1.c', |
michael@0 | 112 | 'source/silk/biquad_alt.c', |
michael@0 | 113 | 'source/silk/bwexpander_32.c', |
michael@0 | 114 | 'source/silk/bwexpander.c', |
michael@0 | 115 | 'source/silk/debug.c', |
michael@0 | 116 | 'source/silk/decode_pitch.c', |
michael@0 | 117 | 'source/silk/inner_prod_aligned.c', |
michael@0 | 118 | 'source/silk/lin2log.c', |
michael@0 | 119 | 'source/silk/log2lin.c', |
michael@0 | 120 | 'source/silk/LPC_analysis_filter.c', |
michael@0 | 121 | 'source/silk/LPC_inv_pred_gain.c', |
michael@0 | 122 | 'source/silk/table_LSF_cos.c', |
michael@0 | 123 | 'source/silk/NLSF2A.c', |
michael@0 | 124 | 'source/silk/NLSF_stabilize.c', |
michael@0 | 125 | 'source/silk/NLSF_VQ_weights_laroia.c', |
michael@0 | 126 | 'source/silk/pitch_est_tables.c', |
michael@0 | 127 | 'source/silk/resampler.c', |
michael@0 | 128 | 'source/silk/resampler_down2_3.c', |
michael@0 | 129 | 'source/silk/resampler_down2.c', |
michael@0 | 130 | 'source/silk/resampler_private_AR2.c', |
michael@0 | 131 | 'source/silk/resampler_private_down_FIR.c', |
michael@0 | 132 | 'source/silk/resampler_private_IIR_FIR.c', |
michael@0 | 133 | 'source/silk/resampler_private_up2_HQ.c', |
michael@0 | 134 | 'source/silk/resampler_rom.c', |
michael@0 | 135 | 'source/silk/sigm_Q15.c', |
michael@0 | 136 | 'source/silk/sort.c', |
michael@0 | 137 | 'source/silk/sum_sqr_shift.c', |
michael@0 | 138 | 'source/silk/stereo_decode_pred.c', |
michael@0 | 139 | 'source/silk/stereo_encode_pred.c', |
michael@0 | 140 | 'source/silk/stereo_find_predictor.c', |
michael@0 | 141 | 'source/silk/stereo_quant_pred.c', |
michael@0 | 142 | |
michael@0 | 143 | # silk floating point engine |
michael@0 | 144 | 'source/silk/float/apply_sine_window_FLP.c', |
michael@0 | 145 | 'source/silk/float/corrMatrix_FLP.c', |
michael@0 | 146 | 'source/silk/float/encode_frame_FLP.c', |
michael@0 | 147 | 'source/silk/float/find_LPC_FLP.c', |
michael@0 | 148 | 'source/silk/float/find_LTP_FLP.c', |
michael@0 | 149 | 'source/silk/float/find_pitch_lags_FLP.c', |
michael@0 | 150 | 'source/silk/float/find_pred_coefs_FLP.c', |
michael@0 | 151 | 'source/silk/float/LPC_analysis_filter_FLP.c', |
michael@0 | 152 | 'source/silk/float/LTP_analysis_filter_FLP.c', |
michael@0 | 153 | 'source/silk/float/LTP_scale_ctrl_FLP.c', |
michael@0 | 154 | 'source/silk/float/noise_shape_analysis_FLP.c', |
michael@0 | 155 | 'source/silk/float/prefilter_FLP.c', |
michael@0 | 156 | 'source/silk/float/process_gains_FLP.c', |
michael@0 | 157 | 'source/silk/float/regularize_correlations_FLP.c', |
michael@0 | 158 | 'source/silk/float/residual_energy_FLP.c', |
michael@0 | 159 | 'source/silk/float/solve_LS_FLP.c', |
michael@0 | 160 | 'source/silk/float/warped_autocorrelation_FLP.c', |
michael@0 | 161 | 'source/silk/float/wrappers_FLP.c', |
michael@0 | 162 | 'source/silk/float/autocorrelation_FLP.c', |
michael@0 | 163 | 'source/silk/float/burg_modified_FLP.c', |
michael@0 | 164 | 'source/silk/float/bwexpander_FLP.c', |
michael@0 | 165 | 'source/silk/float/energy_FLP.c', |
michael@0 | 166 | 'source/silk/float/inner_product_FLP.c', |
michael@0 | 167 | 'source/silk/float/k2a_FLP.c', |
michael@0 | 168 | 'source/silk/float/levinsondurbin_FLP.c', |
michael@0 | 169 | 'source/silk/float/LPC_inv_pred_gain_FLP.c', |
michael@0 | 170 | 'source/silk/float/pitch_analysis_core_FLP.c', |
michael@0 | 171 | 'source/silk/float/scale_copy_vector_FLP.c', |
michael@0 | 172 | 'source/silk/float/scale_vector_FLP.c', |
michael@0 | 173 | 'source/silk/float/schur_FLP.c', |
michael@0 | 174 | 'source/silk/float/sort_FLP.c', |
michael@0 | 175 | ] |
michael@0 | 176 | } |
michael@0 | 177 | ] |
michael@0 | 178 | } |