summaryrefslogtreecommitdiff
path: root/apps/playback.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/playback.c')
-rw-r--r--apps/playback.c13
1 files changed, 2 insertions, 11 deletions
diff --git a/apps/playback.c b/apps/playback.c
index 9fd25b975d..dbe28dd1c4 100644
--- a/apps/playback.c
+++ b/apps/playback.c
@@ -183,8 +183,7 @@ static struct albumart_slot
183/* Buffer and thread state tracking */ 183/* Buffer and thread state tracking */
184static enum filling_state 184static enum filling_state
185{ 185{
186 STATE_BOOT = 0, /* audio thread is not ready yet */ 186 STATE_IDLE = 0, /* audio is stopped: nothing to do */
187 STATE_IDLE, /* audio is stopped: nothing to do */
188 STATE_FILLING, /* adding tracks to the buffer */ 187 STATE_FILLING, /* adding tracks to the buffer */
189 STATE_FULL, /* can't add any more tracks */ 188 STATE_FULL, /* can't add any more tracks */
190 STATE_END_OF_PLAYLIST, /* all remaining tracks have been added */ 189 STATE_END_OF_PLAYLIST, /* all remaining tracks have been added */
@@ -194,7 +193,7 @@ static enum filling_state
194#if (CONFIG_PLATFORM & PLATFORM_NATIVE) 193#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
195 STATE_USB, /* USB mode, ignore most messages */ 194 STATE_USB, /* USB mode, ignore most messages */
196#endif 195#endif
197} filling = STATE_BOOT; 196} filling = STATE_IDLE;
198 197
199/* Track info - holds information about each track in the buffer */ 198/* Track info - holds information about each track in the buffer */
200struct track_info 199struct track_info
@@ -2917,8 +2916,6 @@ static void audio_thread(void)
2917 2916
2918 pcm_postinit(); 2917 pcm_postinit();
2919 2918
2920 filling = STATE_IDLE;
2921
2922 while (1) 2919 while (1)
2923 { 2920 {
2924 switch (filling) 2921 switch (filling)
@@ -3717,12 +3714,6 @@ unsigned long audio_prev_elapsed(void)
3717 return prev_track_elapsed; 3714 return prev_track_elapsed;
3718} 3715}
3719 3716
3720/* Is the audio thread ready to accept commands? */
3721bool audio_is_thread_ready(void)
3722{
3723 return filling != STATE_BOOT;
3724}
3725
3726/* Return total file buffer length after accounting for the talk buf */ 3717/* Return total file buffer length after accounting for the talk buf */
3727size_t audio_get_filebuflen(void) 3718size_t audio_get_filebuflen(void)
3728{ 3719{