aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-03-17 18:13:22 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-03-17 18:13:22 +0000
commit250f21c553dd8759f23d123f9eb257f156af7fcf (patch)
treeee9fa05659a2fbf22e2c3fb7c87052adbaa83934 /src/plugins/Input
parent23fa52a37a3461f8471a7fc2a82f78a9d6d917ab (diff)
downloadqmmp-250f21c553dd8759f23d123f9eb257f156af7fcf.tar.gz
qmmp-250f21c553dd8759f23d123f9eb257f156af7fcf.tar.bz2
qmmp-250f21c553dd8759f23d123f9eb257f156af7fcf.zip
opus plugin: fixed taglib-1.7 support
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3326 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input')
-rw-r--r--src/plugins/Input/opus/opusfile.cpp18
-rw-r--r--src/plugins/Input/opus/opusfile.h23
2 files changed, 0 insertions, 41 deletions
diff --git a/src/plugins/Input/opus/opusfile.cpp b/src/plugins/Input/opus/opusfile.cpp
index b3c43e54b..e476d74e9 100644
--- a/src/plugins/Input/opus/opusfile.cpp
+++ b/src/plugins/Input/opus/opusfile.cpp
@@ -31,7 +31,6 @@
#include <taglib/tstring.h>
#include "tdebug.h"
-#include <taglib/tpropertymap.h>
#include "opusfile.h"
@@ -66,13 +65,6 @@ Opus::File::File(FileName file, bool readProperties,
read(readProperties, propertiesStyle);
}
-Opus::File::File(IOStream *stream, bool readProperties,
- Properties::ReadStyle propertiesStyle) : Ogg::File(stream)
-{
- d = new FilePrivate;
- read(readProperties, propertiesStyle);
-}
-
Opus::File::~File()
{
delete d;
@@ -83,16 +75,6 @@ Ogg::XiphComment *Opus::File::tag() const
return d->comment;
}
-PropertyMap Opus::File::properties() const
-{
- return d->comment->properties();
-}
-
-PropertyMap Opus::File::setProperties(const PropertyMap &properties)
-{
- return d->comment->setProperties(properties);
-}
-
Opus::Properties *Opus::File::audioProperties() const
{
return d->properties;
diff --git a/src/plugins/Input/opus/opusfile.h b/src/plugins/Input/opus/opusfile.h
index 208f33bc5..be9a6df10 100644
--- a/src/plugins/Input/opus/opusfile.h
+++ b/src/plugins/Input/opus/opusfile.h
@@ -64,17 +64,6 @@ namespace TagLib {
Properties::ReadStyle propertiesStyle = Properties::Average);
/*!
- * Contructs a Opus file from \a file. If \a readProperties is true the
- * file's audio properties will also be read using \a propertiesStyle. If
- * false, \a propertiesStyle is ignored.
- *
- * \note TagLib will *not* take ownership of the stream, the caller is
- * responsible for deleting it after the File object.
- */
- File(IOStream *stream, bool readProperties = true,
- Properties::ReadStyle propertiesStyle = Properties::Average);
-
- /*!
* Destroys this instance of the File.
*/
virtual ~File();
@@ -87,18 +76,6 @@ namespace TagLib {
virtual Ogg::XiphComment *tag() const;
/*!
- * Implements the unified property interface -- export function.
- * This forwards directly to XiphComment::properties().
- */
- PropertyMap properties() const;
-
- /*!
- * Implements the unified tag dictionary interface -- import function.
- * Like properties(), this is a forwarder to the file's XiphComment.
- */
- PropertyMap setProperties(const PropertyMap &);
-
- /*!
* Returns the Opus::Properties for this file. If no audio properties
* were read then this will return a null pointer.
*/