summaryrefslogtreecommitdiff
path: root/apps/playlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/playlist.h')
-rw-r--r--apps/playlist.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/playlist.h b/apps/playlist.h
index 2ea4452cca..9ff5122f44 100644
--- a/apps/playlist.h
+++ b/apps/playlist.h
@@ -31,7 +31,10 @@ struct playlist_info
31 char filename[MAX_PATH]; /* path name of m3u playlist on disk */ 31 char filename[MAX_PATH]; /* path name of m3u playlist on disk */
32 int fd; /* file descriptor of the open playlist */ 32 int fd; /* file descriptor of the open playlist */
33 int dirlen; /* Length of the path to the playlist file */ 33 int dirlen; /* Length of the path to the playlist file */
34 int indices[MAX_PLAYLIST_SIZE]; /* array of indices */ 34 int *indices; /* array of indices */
35 int max_playlist_size; /* Max number of files in playlist. Mirror of
36 global_settings.max_files_in_playlist */
37 int buffer_size; /* Playlist buffer size */
35 int index; /* index of current playing track */ 38 int index; /* index of current playing track */
36 int first_index; /* index of first song in playlist */ 39 int first_index; /* index of first song in playlist */
37 int seed; /* random seed */ 40 int seed; /* random seed */