gstreamer/subprojects/gst-plugins-bad/ext/fdkaac/meson.build
Jordan Petridis c4e0d19f13 fdkaac: Mark the dependency include_type as 'system'
When using v2.0.2 of the subproject, it triggers werror for
unused functions that come from the fdkaac headers.

This avoids errors like the following when werror is set.

```
subprojects/fdk-aac-2.0.2/fdk-aac/FDK_audio.h:757:29: error: ‘FDKlibInfo_lookup’
defined but not used [-Werror=unused-function]
  757 | static FDK_AUDIO_INLINE INT FDKlibInfo_lookup(const LIB_INFO* info,
```

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6611>
2024-04-12 13:18:40 +03:00

26 lines
772 B
Meson

fdkaac_dep = dependency('fdk-aac', allow_fallback: true, required : get_option('fdkaac'), include_type: 'system')
if fdkaac_dep.found()
fdkaac_defines = []
# Enable 7.1 support
if fdkaac_dep.version().version_compare('>=0.1.4')
fdkaac_defines += ['-DHAVE_FDK_AAC_0_1_4']
endif
# API v2
if fdkaac_dep.version().version_compare('>=2.0.0')
fdkaac_defines += ['-DHAVE_FDK_AAC_2_0_0']
endif
gstfdkaac = library('gstfdkaac',
['gstfdkaac.c', 'gstfdkaacenc.c', 'gstfdkaacdec.c','gstfdkaacplugin.c'],
c_args : gst_plugins_bad_args + fdkaac_defines,
include_directories : [configinc],
dependencies : [gstaudio_dep, gstpbutils_dep, fdkaac_dep],
install : true,
install_dir : plugins_install_dir,
)
plugins += [gstfdkaac]
endif