diff options
author | Max Kellermann <max@duempel.org> | 2012-02-12 15:20:38 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-02-12 16:10:20 +0100 |
commit | 1735284a2ac1773614786b9f5caf50fa29347654 (patch) | |
tree | 10837862ab981fa2ec97cdec2008ea5370bc2375 /src/playlist/embcue_playlist_plugin.h | |
parent | 8a3192ffc16c54b1d50ea190f1e3d4f941ceefd1 (diff) | |
download | mpd-1735284a2ac1773614786b9f5caf50fa29347654.tar.gz mpd-1735284a2ac1773614786b9f5caf50fa29347654.tar.xz mpd-1735284a2ac1773614786b9f5caf50fa29347654.zip |
playlist/embcue: new plugin for reading embedded cue sheets
Parses CUE data from the "CUESHEET" tag. Needs further integration in
the update thread.
Diffstat (limited to 'src/playlist/embcue_playlist_plugin.h')
-rw-r--r-- | src/playlist/embcue_playlist_plugin.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/playlist/embcue_playlist_plugin.h b/src/playlist/embcue_playlist_plugin.h new file mode 100644 index 000000000..c5f21b27e --- /dev/null +++ b/src/playlist/embcue_playlist_plugin.h @@ -0,0 +1,25 @@ +/* + * Copyright (C) 2003-2012 The Music Player Daemon Project + * http://www.musicpd.org + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef MPD_PLAYLIST_EMBCUE_PLAYLIST_PLUGIN_H +#define MPD_PLAYLIST_EMBCUE_PLAYLIST_PLUGIN_H + +extern const struct playlist_plugin embcue_playlist_plugin; + +#endif |