Home | History | Annotate | Download | only in source
      1 // Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
      2 //
      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
      5 // tree. An additional intellectual property rights grant can be found
      6 // in the file PATENTS.  All contributing project authors may
      7 // be found in the AUTHORS file in the root of the source tree.
      8 
      9 cc_library_static {
     10     name: "libwebrtc_isac",
     11     defaults: ["webrtc_flags"],
     12 
     13     srcs: [
     14         "arith_routines.c",
     15         "arith_routines_hist.c",
     16         "arith_routines_logist.c",
     17         "bandwidth_estimator.c",
     18         "crc.c",
     19         "decode.c",
     20         "decode_bwe.c",
     21         "encode.c",
     22         "encode_lpc_swb.c",
     23         "entropy_coding.c",
     24         "fft.c",
     25         "filter_functions.c",
     26         "filterbank_tables.c",
     27         "filterbanks.c",
     28         "intialize.c",
     29         "isac.c",
     30         "pitch_lag_tables.c",
     31         "lattice.c",
     32         "lpc_gain_swb_tables.c",
     33         "lpc_analysis.c",
     34         "lpc_shape_swb12_tables.c",
     35         "lpc_shape_swb16_tables.c",
     36         "lpc_tables.c",
     37         "pitch_estimator.c",
     38         "pitch_filter.c",
     39         "pitch_gain_tables.c",
     40         "spectrum_ar_model_tables.c",
     41         "transform.c",
     42     ],
     43 
     44     header_libs: ["libwebrtc_isac_interface"],
     45     static_libs: ["libwebrtc_spl"],
     46 }
     47