summaryrefslogtreecommitdiff
path: root/firmware/export/audio.h
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2009-04-06 00:39:43 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2009-04-06 00:39:43 +0000
commit843c7efaf8c953fc3bec40a7da0be3a5da9950df (patch)
treecb27e411394f716d26193433c66132072730ea70 /firmware/export/audio.h
parent9188f0ffd7ce97101a5b2d697cc43072cd63b502 (diff)
downloadrockbox-843c7efaf8c953fc3bec40a7da0be3a5da9950df.tar.gz
rockbox-843c7efaf8c953fc3bec40a7da0be3a5da9950df.zip
FS9795 - some playback cleanup.
* Use events to notify things when the track has changed instead of the nasty has_track_changed() * Event for when the mp3entry for the next track is avilable (which allows alot more tags to be static which means less redrawing in the WPS) * virtually guarentee that the mp3entry sturct returned by audio_current/next_track() is going to be valid for the duration of the current track. The only time it wont be now is during the time between the codec finishing the previous track and the next track actually starting (~2s), but this is not an issue as long as it is called again when the TRACK_CHANGED event happens (or just use the pointer that gives) It is still possible to confuse the WPS with the next tracks id3 info being displayed but this should fix itself up faster than it used to (and be harder to do) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20633 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/audio.h')
-rw-r--r--firmware/export/audio.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/firmware/export/audio.h b/firmware/export/audio.h
index b4a2c82200..6236c6d5d1 100644
--- a/firmware/export/audio.h
+++ b/firmware/export/audio.h
@@ -89,7 +89,6 @@ void audio_ff_rewind(long newtime);
89void audio_flush_and_reload_tracks(void); 89void audio_flush_and_reload_tracks(void);
90struct mp3entry* audio_current_track(void); 90struct mp3entry* audio_current_track(void);
91struct mp3entry* audio_next_track(void); 91struct mp3entry* audio_next_track(void);
92bool audio_has_changed_track(void);
93void audio_get_debugdata(struct audio_debug *dbgdata); 92void audio_get_debugdata(struct audio_debug *dbgdata);
94#ifdef HAVE_DISK_STORAGE 93#ifdef HAVE_DISK_STORAGE
95void audio_set_buffer_margin(int seconds); 94void audio_set_buffer_margin(int seconds);