From c537d5958e8b421ac4f9bef6c8b9e7425a6cf167 Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Wed, 27 Apr 2011 03:08:23 +0000 Subject: Commit FS#12069 - Playback rework - first stages. Gives as thorough as possible a treatment of codec management, track change and metadata logic as possible while maintaining fairly narrow focus and not rewriting everything all at once. Please see the rockbox-dev mail archive on 2011-04-25 (Playback engine rework) for a more thorough manifest of what was addressed. Plugins and codecs become incompatible. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29785 a1c6a512-1295-4272-9138-f99709370657 --- apps/playlist.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'apps/playlist.h') diff --git a/apps/playlist.h b/apps/playlist.h index a0e3b579f7..9c45769981 100644 --- a/apps/playlist.h +++ b/apps/playlist.h @@ -90,7 +90,6 @@ struct playlist_info int buffer_end_pos; /* last position where buffer was written */ int index; /* index of current playing track */ int first_index; /* index of first song in playlist */ - int resume_index; /* index of playing track to resume */ int amount; /* number of tracks in the index */ int last_insert_pos; /* last position we inserted a track */ int seed; /* shuffle seed */ @@ -132,7 +131,6 @@ const char *playlist_peek(int steps, char* buf, size_t buf_size); int playlist_next(int steps); bool playlist_next_dir(int direction); int playlist_get_resume_info(int *resume_index); -int playlist_get_index(void); int playlist_update_resume_info(const struct mp3entry* id3); int playlist_get_display_index(void); int playlist_amount(void); @@ -176,6 +174,5 @@ int playlist_directory_tracksearch(const char* dirname, bool recurse, int (*callback)(char*, void*), void* context); int playlist_remove_all_tracks(struct playlist_info *playlist); -void playlist_update_resume_index(void); #endif /* __PLAYLIST_H__ */ -- cgit v1.2.3