aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/PlayListFormats/pls
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2017-06-12 12:49:11 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2017-06-12 12:49:11 +0000
commitb45f600a4ecf9b3f6121a30794e9fcbbb2fee621 (patch)
treed746e7f60565bcf19f9489bedc9c850c8559242c /src/plugins/PlayListFormats/pls
parent7a1dd2cf2c2b4b6c8bbdf3c3282feeef1be1cac1 (diff)
downloadqmmp-b45f600a4ecf9b3f6121a30794e9fcbbb2fee621.tar.gz
qmmp-b45f600a4ecf9b3f6121a30794e9fcbbb2fee621.tar.bz2
qmmp-b45f600a4ecf9b3f6121a30794e9fcbbb2fee621.zip
improved m3u support (#910)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7227 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/PlayListFormats/pls')
-rw-r--r--src/plugins/PlayListFormats/pls/plsplaylistformat.cpp5
-rw-r--r--src/plugins/PlayListFormats/pls/plsplaylistformat.h4
2 files changed, 5 insertions, 4 deletions
diff --git a/src/plugins/PlayListFormats/pls/plsplaylistformat.cpp b/src/plugins/PlayListFormats/pls/plsplaylistformat.cpp
index 76073a7c6..ac4954567 100644
--- a/src/plugins/PlayListFormats/pls/plsplaylistformat.cpp
+++ b/src/plugins/PlayListFormats/pls/plsplaylistformat.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2008-2012 by Ilya Kotov *
+ * Copyright (C) 2008-2017 by Ilya Kotov *
* forkotov02@hotmail.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -64,8 +64,9 @@ QStringList PLSPlaylistFormat::decode(const QString & contents)
return QStringList();
}
-QString PLSPlaylistFormat::encode(const QList<PlayListTrack *> & contents)
+QString PLSPlaylistFormat::encode(const QList<PlayListTrack *> & contents, const QString &path)
{
+ Q_UNUSED(path);
QStringList out;
out << QString("[playlist]");
int counter = 1;
diff --git a/src/plugins/PlayListFormats/pls/plsplaylistformat.h b/src/plugins/PlayListFormats/pls/plsplaylistformat.h
index 86fc18d00..7fed6d810 100644
--- a/src/plugins/PlayListFormats/pls/plsplaylistformat.h
+++ b/src/plugins/PlayListFormats/pls/plsplaylistformat.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2008 by Ilya Kotov *
+ * Copyright (C) 2008-2017 by Ilya Kotov *
* forkotov02@hotmail.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -37,7 +37,7 @@ class PLSPlaylistFormat : public QObject, public PlayListFormat
public:
const PlayListFormatProperties properties() const;
QStringList decode(const QString& contents);
- QString encode(const QList<PlayListTrack*>& contents);
+ QString encode(const QList<PlayListTrack*>& contents, const QString &path);
};