Revision 739, 0.8 kB
(checked in by ppalmers, 15 years ago)
|
- Adapt the ffado external API (upgrade to v3)
NEEDS NEW JACK BACKEND
- simplify FFADODevice constructor even more
- implement first framework support for supporting multiple adapters.
currently all firewire adapters are scanned for supported devices unless specified otherwise
however attaching devices to separate adapters is not supported. using multiple adapters at
that are connected together might work.
|
Line | |
---|
1 |
/* config.h.in. */ |
---|
2 |
#ifndef CONFIG_H |
---|
3 |
#define CONFIG_H |
---|
4 |
|
---|
5 |
/* Name of package */ |
---|
6 |
#define PACKAGE $PACKAGE |
---|
7 |
|
---|
8 |
/* Define to the address where bug reports for this package should be sent. */ |
---|
9 |
#define PACKAGE_BUGREPORT "<ffado-devel@lists.sf.net>" |
---|
10 |
|
---|
11 |
/* Define to the full name of this package. */ |
---|
12 |
#define PACKAGE_NAME "$PACKAGE" |
---|
13 |
|
---|
14 |
/* Define to the full name and version of this package. */ |
---|
15 |
#define PACKAGE_STRING "$PACKAGE $VERSION-$REVISION" |
---|
16 |
|
---|
17 |
/* Define to the one symbol short name of this package. */ |
---|
18 |
#define PACKAGE_TARNAME "$PACKAGE" |
---|
19 |
|
---|
20 |
/* Define to the version of this package. */ |
---|
21 |
#define PACKAGE_VERSION "$VERSION-$REVISION" |
---|
22 |
|
---|
23 |
/* Define to the api version */ |
---|
24 |
#define FFADO_API_VERSION $FFADO_API_VERSION |
---|
25 |
|
---|
26 |
/* Define to 1 if SSE assembly is available. */ |
---|
27 |
/*#define USE_SSE 1*/ |
---|
28 |
|
---|
29 |
#define CACHEDIR "~/.ffado" |
---|
30 |
|
---|
31 |
#define LIBDIR "$libdir" |
---|
32 |
|
---|
33 |
#define SHAREDIR "$sharedir" |
---|
34 |
|
---|
35 |
#endif // CONFIG_H |
---|