diff --git a/modules/misc/playlist/Modules.am b/modules/misc/playlist/Modules.am index 803d251883591c5d63588303909781893840f5cc..fbeec8c8816f4fe37fb10b83b1cfe28c04754bb1 100644 --- a/modules/misc/playlist/Modules.am +++ b/modules/misc/playlist/Modules.am @@ -1,9 +1,8 @@ SOURCES_export = \ export.c \ - html.c \ + html.c \ m3u.c \ xspf.c \ - xspf.h \ $(NULL) libvlc_LTLIBRARIES += libexport_plugin.la diff --git a/modules/misc/playlist/xspf.c b/modules/misc/playlist/xspf.c index 4f09caf96904c46e0fd347683ca4d1afa9befd16..f59e2036df45a6032abb80ef7ed391ec3e8da124 100644 --- a/modules/misc/playlist/xspf.c +++ b/modules/misc/playlist/xspf.c @@ -35,12 +35,12 @@ #include <vlc_input.h> #include <vlc_strings.h> #include <vlc_url.h> -#include "xspf.h" #include <assert.h> static void xspf_export_item( playlist_item_t *, FILE *, int * ); static void xspf_extension_item( playlist_item_t *, FILE *, int * ); +int xspf_export_playlist( vlc_object_t *p_this ); /** * \brief Prints the XSPF header to file, writes each item by xspf_export_item() diff --git a/modules/misc/playlist/xspf.h b/modules/misc/playlist/xspf.h deleted file mode 100644 index adfaa90542d5581a802a069857febeca3f09d6c8..0000000000000000000000000000000000000000 --- a/modules/misc/playlist/xspf.h +++ /dev/null @@ -1,35 +0,0 @@ -/***************************************************************************** - * Copyright (C) 2006 Daniel Stränger <vlc at schmaller dot de> - * - * 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. - *******************************************************************************/ -/** - * \file modules/misc/playlist/xspf.h - * \brief XSPF playlist export module header file - */ - -/* defs */ -#define B10000000 0x80 -#define B01000000 0x40 -#define B11000000 0xc0 -#define B00001111 0x0f - -#define XSPF_MAX_CONTENT 2000 - -/* constants */ -const char hexchars[16] = "0123456789ABCDEF"; - -/* prototypes */ -int xspf_export_playlist( vlc_object_t * ); diff --git a/po/POTFILES.in b/po/POTFILES.in index db34da4b50dc095a432aa394ec8595b2c36fcf07..fcfdd043995dc3cecbba619d7d7b9100c57d770c 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -939,7 +939,6 @@ modules/misc/playlist/export.c modules/misc/playlist/html.c modules/misc/playlist/m3u.c modules/misc/playlist/xspf.c -modules/misc/playlist/xspf.h modules/misc/rtsp.c modules/misc/sqlite.c modules/misc/stats/decoder.c