summaryrefslogtreecommitdiffstats
path: root/common/playlist.h
diff options
context:
space:
mode:
authorAlessandro Ghedini <alessandro@ghedini.me>2014-07-24 19:30:24 +0200
committerAlessandro Ghedini <alessandro@ghedini.me>2014-07-26 11:55:02 +0200
commitd50be0a2a61a247faa10e18d9881c7837d72b3cd (patch)
treecaff05851670d558834aa7823fe2d4e85f243bd1 /common/playlist.h
parent2d8e26bb72d8b1645f98979f2715e1a12e9d1ab5 (diff)
downloadmpv-d50be0a2a61a247faa10e18d9881c7837d72b3cd.tar.bz2
mpv-d50be0a2a61a247faa10e18d9881c7837d72b3cd.tar.xz
command: append entries to the end of the playlist with loadlist append
Currently entries are added after the current playlist element. This is kinda confusing, more so given that "loadfile append" appends at the end of the playlist.
Diffstat (limited to 'common/playlist.h')
-rw-r--r--common/playlist.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/playlist.h b/common/playlist.h
index c55a3a21c8..73227f071c 100644
--- a/common/playlist.h
+++ b/common/playlist.h
@@ -74,6 +74,7 @@ void playlist_shuffle(struct playlist *pl);
struct playlist_entry *playlist_get_next(struct playlist *pl, int direction);
void playlist_add_base_path(struct playlist *pl, bstr base_path);
void playlist_transfer_entries(struct playlist *pl, struct playlist *source_pl);
+void playlist_append_entries(struct playlist *pl, struct playlist *source_pl);
int playlist_entry_to_index(struct playlist *pl, struct playlist_entry *e);
int playlist_entry_count(struct playlist *pl);