diff options
Diffstat (limited to 'apps/playback.c')
-rw-r--r-- | apps/playback.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/playback.c b/apps/playback.c index dccae587b9..bacafc30b5 100644 --- a/apps/playback.c +++ b/apps/playback.c | |||
@@ -645,6 +645,7 @@ void audio_flush_and_reload_tracks(void) | |||
645 | void audio_error_clear(void) | 645 | void audio_error_clear(void) |
646 | { | 646 | { |
647 | #ifdef AUDIO_HAVE_RECORDING | 647 | #ifdef AUDIO_HAVE_RECORDING |
648 | extern void pcm_rec_error_clear(void); | ||
648 | pcm_rec_error_clear(); | 649 | pcm_rec_error_clear(); |
649 | #endif | 650 | #endif |
650 | } | 651 | } |
@@ -661,6 +662,7 @@ int audio_status(void) | |||
661 | 662 | ||
662 | #ifdef HAVE_RECORDING | 663 | #ifdef HAVE_RECORDING |
663 | /* Do this here for constitency with mpeg.c version */ | 664 | /* Do this here for constitency with mpeg.c version */ |
665 | extern unsigned long pcm_rec_status(void); | ||
664 | ret |= pcm_rec_status(); | 666 | ret |= pcm_rec_status(); |
665 | #endif | 667 | #endif |
666 | 668 | ||