diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2007-06-08 23:42:04 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2007-06-08 23:42:04 +0000 |
| commit | 2d48d0ffa6baddd19e6ff077f25068f90af7be3d (patch) | |
| tree | 68c80646a748496fee423d77aa43afafb783b269 /firmware/export/config_caps.h | |
| parent | a85793fc54a0079f5483d5a5c6c60b7d17ca688c (diff) | |
| download | rockbox-2d48d0ffa6baddd19e6ff077f25068f90af7be3d.zip rockbox-2d48d0ffa6baddd19e6ff077f25068f90af7be3d.tar.gz rockbox-2d48d0ffa6baddd19e6ff077f25068f90af7be3d.tar.bz2 rockbox-2d48d0ffa6baddd19e6ff077f25068f90af7be3d.tar.xz | |
Straighten out some audio path APIs and misc. audio stuff. Having recording is not a prerequisite to having input/output source selection which is probably most useful when adding a audio input features like FM to a new port without forcing recording to be implemented first.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13599 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/config_caps.h')
| -rw-r--r-- | firmware/export/config_caps.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/firmware/export/config_caps.h b/firmware/export/config_caps.h index 8e3832d..62cae8f 100644 --- a/firmware/export/config_caps.h +++ b/firmware/export/config_caps.h @@ -66,6 +66,10 @@ #define HAVE_FMRADIO_IN_(...) #endif +#if INPUT_SRC_CAPS != 0 && (INPUT_SRC_CAPS & (INPUT_SRC_CAPS-1)) != 0 +#define HAVE_MULTI_INPUT_SRC +#endif + #ifdef HAVE_RECORDING /* Recordable source implies it has the input as well */ @@ -104,4 +108,9 @@ #else #define HAVE_FMRADIO_REC_(...) #endif + +#if REC_SRC_CAPS != 0 && (REC_SRC_CAPS & (REC_SRC_CAPS-1)) != 0 +#define HAVE_MULTI_REC_SRC +#endif + #endif /* HAVE_RECORDING */ |