forked from len0rd/rockbox
Remove unused function audio_has_changed_track from apps/mpeg.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20893 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
9ca29354e1
commit
370455cc41
1 changed files with 0 additions and 11 deletions
11
apps/mpeg.c
11
apps/mpeg.c
|
|
@ -107,7 +107,6 @@ struct trackdata
|
|||
static struct trackdata trackdata[MAX_TRACK_ENTRIES];
|
||||
|
||||
static unsigned int current_track_counter = 0;
|
||||
static unsigned int last_track_counter = 0;
|
||||
|
||||
/* Play time of the previous track */
|
||||
unsigned long prev_track_elapsed;
|
||||
|
|
@ -2069,16 +2068,6 @@ struct mp3entry* audio_next_track()
|
|||
#endif /* !SIMULATOR */
|
||||
}
|
||||
|
||||
bool audio_has_changed_track(void)
|
||||
{
|
||||
if(last_track_counter != current_track_counter)
|
||||
{
|
||||
last_track_counter = current_track_counter;
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
#if CONFIG_CODEC == MAS3587F
|
||||
#ifndef SIMULATOR
|
||||
void audio_init_playback(void)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue