diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2008-04-20 10:21:44 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2008-04-20 10:21:44 +0000 |
| commit | 8924686224eef5672bb3087e0ed358b745d603d1 (patch) | |
| tree | 3587188e3665284663f947c3503b6f1a43c59cde /apps | |
| parent | 0e71c589e0d95f195f133fdd26b849ce2a91b3b0 (diff) | |
| download | rockbox-8924686224eef5672bb3087e0ed358b745d603d1.zip rockbox-8924686224eef5672bb3087e0ed358b745d603d1.tar.gz rockbox-8924686224eef5672bb3087e0ed358b745d603d1.tar.bz2 rockbox-8924686224eef5672bb3087e0ed358b745d603d1.tar.xz | |
Removed unneeded dependency on pcmbuf.h
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17183 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/main.c | 3 | ||||
| -rw-r--r-- | apps/menus/recording_menu.c | 1 | ||||
| -rw-r--r-- | apps/menus/sound_menu.c | 3 | ||||
| -rw-r--r-- | apps/settings.c | 1 |
4 files changed, 0 insertions, 8 deletions
diff --git a/apps/main.c b/apps/main.c index 543f476..47af3ab 100644 --- a/apps/main.c +++ b/apps/main.c @@ -73,9 +73,6 @@ #if (CONFIG_CODEC == SWCODEC) #include "playback.h" -#include "pcmbuf.h" -#else -#define pcmbuf_init() #endif #if (CONFIG_CODEC == SWCODEC) && defined(HAVE_RECORDING) && !defined(SIMULATOR) #include "pcm_record.h" diff --git a/apps/menus/recording_menu.c b/apps/menus/recording_menu.c index 9d7379a..aa16adf 100644 --- a/apps/menus/recording_menu.c +++ b/apps/menus/recording_menu.c @@ -55,7 +55,6 @@ #if CONFIG_CODEC == SWCODEC #include "dsp.h" #include "menus/eq_menu.h" -#include "pcmbuf.h" #ifdef HAVE_RECORDING #include "enc_config.h" #endif diff --git a/apps/menus/sound_menu.c b/apps/menus/sound_menu.c index 315fef8..1c1be38 100644 --- a/apps/menus/sound_menu.c +++ b/apps/menus/sound_menu.c @@ -28,9 +28,6 @@ #include "menu.h" #include "sound_menu.h" #include "eq_menu.h" -#if CONFIG_CODEC == SWCODEC -#include "pcmbuf.h" -#endif #include "exported_menus.h" #include "menu_common.h" diff --git a/apps/settings.c b/apps/settings.c index 3a9a806..25f17d0 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -76,7 +76,6 @@ struct user_settings global_settings; struct system_status global_status; #if CONFIG_CODEC == SWCODEC -#include "pcmbuf.h" #include "dsp.h" #include "playback.h" #ifdef HAVE_RECORDING |