aboutsummaryrefslogtreecommitdiff
path: root/src/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins')
-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.
*/