summaryrefslogtreecommitdiffstats
path: root/apps/playback.h
diff options
context:
space:
mode:
authorSteve Bavin <pondlife@pondlife.me>2008-03-28 12:51:33 +0000
committerSteve Bavin <pondlife@pondlife.me>2008-03-28 12:51:33 +0000
commit135cc757bda4714aca2831f7d75b7a4c1c4f7763 (patch)
tree2925838c63fdff85082f7717b78e273523a4f838 /apps/playback.h
parent3d0b7c69016dc0dc1a4a81131340ac3024ecd356 (diff)
downloadrockbox-135cc757bda4714aca2831f7d75b7a4c1c4f7763.tar.gz
rockbox-135cc757bda4714aca2831f7d75b7a4c1c4f7763.zip
Revert my earlier const madness, we'll keep the parameter lists simple.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16863 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/playback.h')
-rw-r--r--apps/playback.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/playback.h b/apps/playback.h
index b65c572145..9951cc2a0d 100644
--- a/apps/playback.h
+++ b/apps/playback.h
@@ -38,13 +38,13 @@
#define MAX_TRACK_MASK (MAX_TRACK-1)
/* Functions */
-const char *get_codec_filename(const int cod_spec);
+const char *get_codec_filename(int cod_spec);
void voice_wait(void);
void audio_wait_for_init(void);
int audio_track_count(void);
long audio_filebufused(void);
void audio_pre_ff_rewind(void);
-void audio_set_crossfade(const int type);
+void audio_set_crossfade(int type);
void audio_hard_stop(void); /* Stops audio from serving playback */
@@ -53,7 +53,7 @@ enum
AUDIO_WANT_PLAYBACK = 0,
AUDIO_WANT_VOICE,
};
-bool audio_restore_playback(const int type); /* Restores the audio buffer to handle the requested playback */
+bool audio_restore_playback(int type); /* Restores the audio buffer to handle the requested playback */
#ifdef HAVE_ALBUMART
int audio_current_aa_hid(void);