summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2006-12-17 11:25:42 +0000
committerMichael Sevakis <jethead71@rockbox.org>2006-12-17 11:25:42 +0000
commitac6be5d550f39f262789367804bfb4fb6075b08b (patch)
treeda2d9c8dabeb906e053e2a5ed1b12d0fd09daf3e
parent36c940555c7f5a4f991937ff5a4c2214b6323f8e (diff)
downloadrockbox-ac6be5d550f39f262789367804bfb4fb6075b08b.zip
rockbox-ac6be5d550f39f262789367804bfb4fb6075b08b.tar.gz
rockbox-ac6be5d550f39f262789367804bfb4fb6075b08b.tar.bz2
rockbox-ac6be5d550f39f262789367804bfb4fb6075b08b.tar.xz
Sims hate me again (or is that the other way). Fixup the stubs.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11784 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/recorder/recording.c18
1 files changed, 5 insertions, 13 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index 1b7cb17..fa97837 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -2047,7 +2047,6 @@ unsigned long audio_num_recorded_bytes(void)
return 5 * 1024 * 1024;
}
-#if CONFIG_CODEC == SWCODEC
void rec_set_source(int source, unsigned flags)
{
source = source;
@@ -2067,7 +2066,6 @@ bool audio_get_spdif_power_setting(void)
}
#endif /* HAVE_SPDIF_POWER */
#endif /* HAVE_SPDIF_IN */
-#endif /* CONFIG_CODEC == SWCODEC */
void audio_set_recording_options(struct audio_recording_options *options)
{
@@ -2081,6 +2079,11 @@ void audio_set_recording_gain(int left, int right, int type)
type = type;
}
+void audio_record(const char *filename)
+{
+ filename = filename;
+}
+
void audio_stop_recording(void)
{
}
@@ -2101,16 +2104,6 @@ void pcm_calculate_rec_peaks(int *left, int *right)
*right = 0;
}
-void audio_record(const char *filename)
-{
- filename = filename;
-}
-
-void audio_new_file(const char *filename)
-{
- filename = filename;
-}
-
unsigned long pcm_rec_status(void)
{
return 0;
@@ -2119,5 +2112,4 @@ unsigned long pcm_rec_status(void)
#endif /* #ifdef SIMULATOR */
#endif /* #ifdef CONFIG_CODEC == SWCODEC */
-
#endif /* HAVE_RECORDING */