-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.h.in
64 lines (50 loc) · 1.85 KB
/
config.h.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*******************************************************************************
* Dolby Home Audio GStreamer Plugins
* Copyright (C) 2020-2022, Dolby Laboratories
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
******************************************************************************/
#pragma once
/* essentials */
#mesondefine LICENSE
#mesondefine ORIGIN
#mesondefine PACKAGE
#mesondefine VERSION
/* shim layer defines */
#define OPEN_DYNLIB_FUN(_lib_) int _lib_##_try_open_dynlib(void);
#mesondefine HAVE_DLADDR
#mesondefine HAVE_WINAPI
#mesondefine DLB_AUDIO_PARSER_LIBNAME
#mesondefine DLB_AUDIO_PARSER_OPEN_DYNLIB
#ifdef DLB_AUDIO_PARSER_OPEN_DYNLIB
OPEN_DYNLIB_FUN(dlb_audio_parser)
#endif
#mesondefine DLB_FLEXR_LIBNAME
#mesondefine DLB_FLEXR_OPEN_DYNLIB
#ifdef DLB_FLEXR_OPEN_DYNLIB
OPEN_DYNLIB_FUN(dlb_flexr)
#endif
#mesondefine DLB_DAP_LIBNAME
#mesondefine DLB_DAP_OPEN_DYNLIB
#ifdef DLB_DAP_OPEN_DYNLIB
OPEN_DYNLIB_FUN(dlb_dap)
#endif
#mesondefine DLB_OAR_LIBNAME
#mesondefine DLB_OAR_OPEN_DYNLIB
#ifdef DLB_OAR_OPEN_DYNLIB
OPEN_DYNLIB_FUN(dlb_oar)
#endif
#mesondefine DLB_UDC_LIBNAME
#mesondefine DLB_UDC_OPEN_DYNLIB
#ifdef DLB_UDC_OPEN_DYNLIB
OPEN_DYNLIB_FUN(dlb_udc)
#endif