diff options
author | Max Kellermann <max@duempel.org> | 2010-01-05 21:46:32 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-01-06 08:50:52 +0100 |
commit | 030e61115c9dcc804a5441329a9aef2ac9c3619b (patch) | |
tree | f764f5b1fa8d8d5684ac80689c8537ee0e05f88d /src/playlist/flac_playlist_plugin.h | |
parent | d6d5caae23f5b452a3d2de9f576d0137bbc472e3 (diff) | |
download | mpd-030e61115c9dcc804a5441329a9aef2ac9c3619b.tar.gz mpd-030e61115c9dcc804a5441329a9aef2ac9c3619b.tar.xz mpd-030e61115c9dcc804a5441329a9aef2ac9c3619b.zip |
playlist: added a FLAC playlist plugin
This playlist plugin handles FLAC files with embedded CUE sheets.
Diffstat (limited to 'src/playlist/flac_playlist_plugin.h')
-rw-r--r-- | src/playlist/flac_playlist_plugin.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/playlist/flac_playlist_plugin.h b/src/playlist/flac_playlist_plugin.h new file mode 100644 index 000000000..7b141264f --- /dev/null +++ b/src/playlist/flac_playlist_plugin.h @@ -0,0 +1,25 @@ +/* + * Copyright (C) 2003-2010 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_FLAC_PLAYLIST_PLUGIN_H +#define MPD_PLAYLIST_FLAC_PLAYLIST_PLUGIN_H + +extern const struct playlist_plugin flac_playlist_plugin; + +#endif |