Bob Badour | 56786ac | 2021-02-25 15:24:36 -0800 | [diff] [blame^] | 1 | package { |
| 2 | default_applicable_licenses: [ |
| 3 | "frameworks_av_media_codec2_components_flac_license", |
| 4 | ], |
| 5 | } |
| 6 | |
| 7 | // Added automatically by a large-scale-change |
| 8 | // See: http://go/android-license-faq |
| 9 | license { |
| 10 | name: "frameworks_av_media_codec2_components_flac_license", |
| 11 | visibility: [":__subpackages__"], |
| 12 | license_kinds: [ |
| 13 | "SPDX-license-identifier-Apache-2.0", |
| 14 | ], |
| 15 | license_text: [ |
| 16 | "NOTICE", |
| 17 | ], |
| 18 | } |
| 19 | |
S Vasudev Prasad | ee17317 | 2020-11-23 12:17:14 +0530 | [diff] [blame] | 20 | cc_library { |
Pawin Vongmasa | d0f0e14 | 2018-11-15 03:36:28 -0800 | [diff] [blame] | 21 | name: "libcodec2_soft_flacdec", |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 22 | defaults: [ |
Pawin Vongmasa | d0f0e14 | 2018-11-15 03:36:28 -0800 | [diff] [blame] | 23 | "libcodec2_soft-defaults", |
| 24 | "libcodec2_soft_sanitize_all-defaults", |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 25 | ], |
| 26 | |
| 27 | header_libs: ["libFLAC-headers"], |
| 28 | |
| 29 | srcs: ["C2SoftFlacDec.cpp"], |
| 30 | |
| 31 | shared_libs: [ |
| 32 | "libstagefright_flacdec", |
| 33 | ], |
| 34 | } |
| 35 | |
S Vasudev Prasad | ee17317 | 2020-11-23 12:17:14 +0530 | [diff] [blame] | 36 | cc_library { |
Pawin Vongmasa | d0f0e14 | 2018-11-15 03:36:28 -0800 | [diff] [blame] | 37 | name: "libcodec2_soft_flacenc", |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 38 | defaults: [ |
Pawin Vongmasa | d0f0e14 | 2018-11-15 03:36:28 -0800 | [diff] [blame] | 39 | "libcodec2_soft-defaults", |
| 40 | "libcodec2_soft_sanitize_all-defaults", |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 41 | ], |
| 42 | |
| 43 | srcs: ["C2SoftFlacEnc.cpp"], |
| 44 | |
Inseob Kim | 77dbeee | 2020-05-29 18:04:45 +0530 | [diff] [blame] | 45 | shared_libs: [ |
Andy Hung | 1188a05 | 2019-01-02 13:09:52 -0800 | [diff] [blame] | 46 | "libaudioutils", |
Inseob Kim | 77dbeee | 2020-05-29 18:04:45 +0530 | [diff] [blame] | 47 | ], |
| 48 | |
| 49 | static_libs: [ |
Andy Hung | 1188a05 | 2019-01-02 13:09:52 -0800 | [diff] [blame] | 50 | "libFLAC", |
| 51 | ], |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 52 | } |