OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 import("//build/config/arm.gni") | 9 import("//build/config/arm.gni") |
10 import("../../build/webrtc.gni") | 10 import("../../build/webrtc.gni") |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 "codecs/ilbc/interface", | 228 "codecs/ilbc/interface", |
229 ] | 229 ] |
230 } | 230 } |
231 | 231 |
232 source_set("ilbc") { | 232 source_set("ilbc") { |
233 sources = [ | 233 sources = [ |
234 "codecs/ilbc/abs_quant.c", | 234 "codecs/ilbc/abs_quant.c", |
235 "codecs/ilbc/abs_quant.h", | 235 "codecs/ilbc/abs_quant.h", |
236 "codecs/ilbc/abs_quant_loop.c", | 236 "codecs/ilbc/abs_quant_loop.c", |
237 "codecs/ilbc/abs_quant_loop.h", | 237 "codecs/ilbc/abs_quant_loop.h", |
| 238 "codecs/ilbc/audio_decoder_ilbc.cc", |
238 "codecs/ilbc/audio_encoder_ilbc.cc", | 239 "codecs/ilbc/audio_encoder_ilbc.cc", |
239 "codecs/ilbc/augmented_cb_corr.c", | 240 "codecs/ilbc/augmented_cb_corr.c", |
240 "codecs/ilbc/augmented_cb_corr.h", | 241 "codecs/ilbc/augmented_cb_corr.h", |
241 "codecs/ilbc/bw_expand.c", | 242 "codecs/ilbc/bw_expand.c", |
242 "codecs/ilbc/bw_expand.h", | 243 "codecs/ilbc/bw_expand.h", |
243 "codecs/ilbc/cb_construct.c", | 244 "codecs/ilbc/cb_construct.c", |
244 "codecs/ilbc/cb_construct.h", | 245 "codecs/ilbc/cb_construct.h", |
245 "codecs/ilbc/cb_mem_energy.c", | 246 "codecs/ilbc/cb_mem_energy.c", |
246 "codecs/ilbc/cb_mem_energy.h", | 247 "codecs/ilbc/cb_mem_energy.h", |
247 "codecs/ilbc/cb_mem_energy_augmentation.c", | 248 "codecs/ilbc/cb_mem_energy_augmentation.c", |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 "codecs/ilbc/get_cd_vec.h", | 294 "codecs/ilbc/get_cd_vec.h", |
294 "codecs/ilbc/get_lsp_poly.c", | 295 "codecs/ilbc/get_lsp_poly.c", |
295 "codecs/ilbc/get_lsp_poly.h", | 296 "codecs/ilbc/get_lsp_poly.h", |
296 "codecs/ilbc/get_sync_seq.c", | 297 "codecs/ilbc/get_sync_seq.c", |
297 "codecs/ilbc/get_sync_seq.h", | 298 "codecs/ilbc/get_sync_seq.h", |
298 "codecs/ilbc/hp_input.c", | 299 "codecs/ilbc/hp_input.c", |
299 "codecs/ilbc/hp_input.h", | 300 "codecs/ilbc/hp_input.h", |
300 "codecs/ilbc/hp_output.c", | 301 "codecs/ilbc/hp_output.c", |
301 "codecs/ilbc/hp_output.h", | 302 "codecs/ilbc/hp_output.h", |
302 "codecs/ilbc/ilbc.c", | 303 "codecs/ilbc/ilbc.c", |
| 304 "codecs/ilbc/include/audio_decoder_ilbc.h", |
303 "codecs/ilbc/include/audio_encoder_ilbc.h", | 305 "codecs/ilbc/include/audio_encoder_ilbc.h", |
304 "codecs/ilbc/index_conv_dec.c", | 306 "codecs/ilbc/index_conv_dec.c", |
305 "codecs/ilbc/index_conv_dec.h", | 307 "codecs/ilbc/index_conv_dec.h", |
306 "codecs/ilbc/index_conv_enc.c", | 308 "codecs/ilbc/index_conv_enc.c", |
307 "codecs/ilbc/index_conv_enc.h", | 309 "codecs/ilbc/index_conv_enc.h", |
308 "codecs/ilbc/init_decode.c", | 310 "codecs/ilbc/init_decode.c", |
309 "codecs/ilbc/init_decode.h", | 311 "codecs/ilbc/init_decode.h", |
310 "codecs/ilbc/init_encode.c", | 312 "codecs/ilbc/init_encode.c", |
311 "codecs/ilbc/init_encode.h", | 313 "codecs/ilbc/init_encode.h", |
312 "codecs/ilbc/interface/ilbc.h", | 314 "codecs/ilbc/interface/ilbc.h", |
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
784 "../../system_wrappers", | 786 "../../system_wrappers", |
785 ] | 787 ] |
786 | 788 |
787 defines = [] | 789 defines = [] |
788 | 790 |
789 if (rtc_include_opus) { | 791 if (rtc_include_opus) { |
790 defines += [ "WEBRTC_CODEC_OPUS" ] | 792 defines += [ "WEBRTC_CODEC_OPUS" ] |
791 deps += [ ":webrtc_opus" ] | 793 deps += [ ":webrtc_opus" ] |
792 } | 794 } |
793 } | 795 } |
OLD | NEW |