summaryrefslogtreecommitdiff
path: root/apps/playlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/playlist.h')
-rw-r--r--apps/playlist.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/apps/playlist.h b/apps/playlist.h
index a2fd6d8ea8..1ab330e513 100644
--- a/apps/playlist.h
+++ b/apps/playlist.h
@@ -28,7 +28,6 @@
28#include "kernel.h" 28#include "kernel.h"
29#include "metadata.h" 29#include "metadata.h"
30#include "rbpaths.h" 30#include "rbpaths.h"
31#include "chunk_alloc.h"
32 31
33#define PLAYLIST_ATTR_QUEUED 0x01 32#define PLAYLIST_ATTR_QUEUED 0x01
34#define PLAYLIST_ATTR_INSERTED 0x02 33#define PLAYLIST_ATTR_INSERTED 0x02
@@ -85,10 +84,10 @@ struct playlist_info
85 global_settings.max_files_in_playlist */ 84 global_settings.max_files_in_playlist */
86 int num_inserted_tracks; /* number of tracks inserted */ 85 int num_inserted_tracks; /* number of tracks inserted */
87 volatile unsigned long *indices; /* array of indices */ 86 volatile unsigned long *indices; /* array of indices */
88 87 int buffer_handle; /* handle to the below buffer (-1 if non-buflib) */
89 struct chunk_alloc_header name_chunk_buffer; /* chunk buffer for 88 volatile char *buffer;/* buffer for in-ram playlists */
90 in-ram playlist */ 89 int buffer_size; /* size of buffer */
91 90 int buffer_end_pos; /* last position where buffer was written */
92 int index; /* index of current playing track */ 91 int index; /* index of current playing track */
93 int first_index; /* index of first song in playlist */ 92 int first_index; /* index of first song in playlist */
94 int amount; /* number of tracks in the index */ 93 int amount; /* number of tracks in the index */