diff options
| author | Marc Guay <marcguay@rockbox.org> | 2008-07-14 14:13:28 +0000 |
|---|---|---|
| committer | Marc Guay <marcguay@rockbox.org> | 2008-07-14 14:13:28 +0000 |
| commit | 4f199817488708ba60724accb6ce76886f855af8 (patch) | |
| tree | 3bb04d9111a72953242dffe6808da14a8f9bcb3a | |
| parent | 37400f8d4decf2d5aee5abe5a1a08a1ec024306f (diff) | |
| download | rockbox-4f199817488708ba60724accb6ce76886f855af8.zip rockbox-4f199817488708ba60724accb6ce76886f855af8.tar.gz rockbox-4f199817488708ba60724accb6ce76886f855af8.tar.bz2 rockbox-4f199817488708ba60724accb6ce76886f855af8.tar.xz | |
Revert r18029 as well. It's more complicated than I thought as Rockbox currently seems to assume that all targets have microphone recording abilities. Will recheck, and verify more thoroughly before committing from now on.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18031 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/config-ipodnano.h | 2 | ||||
| -rw-r--r-- | firmware/export/config-ipodvideo.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/config-ipodnano.h b/firmware/export/config-ipodnano.h index adee07a..ced2c47 100644 --- a/firmware/export/config-ipodnano.h +++ b/firmware/export/config-ipodnano.h @@ -16,7 +16,7 @@ /* Define bitmask of input sources - recordable bitmask can be defined explicitly if different */ -#define INPUT_SRC_CAPS (SRC_CAP_LINEIN) +#define INPUT_SRC_CAPS (SRC_CAP_MIC | SRC_CAP_LINEIN) /* define the bitmask of hardware sample rates */ #define HW_SAMPR_CAPS (SAMPR_CAP_44) diff --git a/firmware/export/config-ipodvideo.h b/firmware/export/config-ipodvideo.h index cab028b..d15494c 100644 --- a/firmware/export/config-ipodvideo.h +++ b/firmware/export/config-ipodvideo.h @@ -16,7 +16,7 @@ /* Define bitmask of input sources - recordable bitmask can be defined explicitly if different */ -#define INPUT_SRC_CAPS (SRC_CAP_LINEIN) +#define INPUT_SRC_CAPS (SRC_CAP_MIC | SRC_CAP_LINEIN) /* define the bitmask of hardware sample rates */ #define HW_SAMPR_CAPS (SAMPR_CAP_44) |