aboutsummaryrefslogtreecommitdiffstats
path: root/taglib/ogg
diff options
context:
space:
mode:
Diffstat (limited to 'taglib/ogg')
-rw-r--r--taglib/ogg/flac/oggflacfile.cpp2
-rw-r--r--taglib/ogg/flac/oggflacfile.h2
-rw-r--r--taglib/ogg/opus/opusfile.cpp2
-rw-r--r--taglib/ogg/opus/opusfile.h2
-rw-r--r--taglib/ogg/speex/speexfile.cpp2
-rw-r--r--taglib/ogg/speex/speexfile.h2
-rw-r--r--taglib/ogg/vorbis/vorbisfile.cpp2
-rw-r--r--taglib/ogg/vorbis/vorbisfile.h2
8 files changed, 8 insertions, 8 deletions
diff --git a/taglib/ogg/flac/oggflacfile.cpp b/taglib/ogg/flac/oggflacfile.cpp
index e294d411..53d04508 100644
--- a/taglib/ogg/flac/oggflacfile.cpp
+++ b/taglib/ogg/flac/oggflacfile.cpp
@@ -70,7 +70,7 @@ public:
// static members
////////////////////////////////////////////////////////////////////////////////
-bool Ogg::FLAC::File::isValidStream(IOStream *stream)
+bool Ogg::FLAC::File::isSupported(IOStream *stream)
{
// An Ogg FLAC file has IDs "OggS" and "fLaC" somewhere.
diff --git a/taglib/ogg/flac/oggflacfile.h b/taglib/ogg/flac/oggflacfile.h
index 5f4313da..b2686e45 100644
--- a/taglib/ogg/flac/oggflacfile.h
+++ b/taglib/ogg/flac/oggflacfile.h
@@ -149,7 +149,7 @@ namespace TagLib {
* \note This method is designed to do a quick check. The result may
* not necessarily be correct.
*/
- static bool isValidStream(IOStream *stream);
+ static bool isSupported(IOStream *stream);
private:
File(const File &);
diff --git a/taglib/ogg/opus/opusfile.cpp b/taglib/ogg/opus/opusfile.cpp
index 85d995bc..d4f191ad 100644
--- a/taglib/ogg/opus/opusfile.cpp
+++ b/taglib/ogg/opus/opusfile.cpp
@@ -58,7 +58,7 @@ public:
// static members
////////////////////////////////////////////////////////////////////////////////
-bool Ogg::Opus::File::isValidStream(IOStream *stream)
+bool Ogg::Opus::File::isSupported(IOStream *stream)
{
// An Opus file has IDs "OggS" and "OpusHead" somewhere.
diff --git a/taglib/ogg/opus/opusfile.h b/taglib/ogg/opus/opusfile.h
index 60f60c3f..0e094eae 100644
--- a/taglib/ogg/opus/opusfile.h
+++ b/taglib/ogg/opus/opusfile.h
@@ -120,7 +120,7 @@ namespace TagLib {
* \note This method is designed to do a quick check. The result may
* not necessarily be correct.
*/
- static bool isValidStream(IOStream *stream);
+ static bool isSupported(IOStream *stream);
private:
File(const File &);
diff --git a/taglib/ogg/speex/speexfile.cpp b/taglib/ogg/speex/speexfile.cpp
index d3368774..b3c8a636 100644
--- a/taglib/ogg/speex/speexfile.cpp
+++ b/taglib/ogg/speex/speexfile.cpp
@@ -58,7 +58,7 @@ public:
// static members
////////////////////////////////////////////////////////////////////////////////
-bool Ogg::Speex::File::isValidStream(IOStream *stream)
+bool Ogg::Speex::File::isSupported(IOStream *stream)
{
// A Speex file has IDs "OggS" and "Speex " somewhere.
diff --git a/taglib/ogg/speex/speexfile.h b/taglib/ogg/speex/speexfile.h
index eda347e0..1be7113c 100644
--- a/taglib/ogg/speex/speexfile.h
+++ b/taglib/ogg/speex/speexfile.h
@@ -120,7 +120,7 @@ namespace TagLib {
* \note This method is designed to do a quick check. The result may
* not necessarily be correct.
*/
- static bool isValidStream(IOStream *stream);
+ static bool isSupported(IOStream *stream);
private:
File(const File &);
diff --git a/taglib/ogg/vorbis/vorbisfile.cpp b/taglib/ogg/vorbis/vorbisfile.cpp
index 7f02fff5..b4f221ab 100644
--- a/taglib/ogg/vorbis/vorbisfile.cpp
+++ b/taglib/ogg/vorbis/vorbisfile.cpp
@@ -63,7 +63,7 @@ namespace TagLib {
// static members
////////////////////////////////////////////////////////////////////////////////
-bool Vorbis::File::isValidStream(IOStream *stream)
+bool Vorbis::File::isSupported(IOStream *stream)
{
// An Ogg Vorbis file has IDs "OggS" and "\x01vorbis" somewhere.
diff --git a/taglib/ogg/vorbis/vorbisfile.h b/taglib/ogg/vorbis/vorbisfile.h
index 9f7cb7e4..04c0c04e 100644
--- a/taglib/ogg/vorbis/vorbisfile.h
+++ b/taglib/ogg/vorbis/vorbisfile.h
@@ -127,7 +127,7 @@ namespace TagLib {
* \note This method is designed to do a quick check. The result may
* not necessarily be correct.
*/
- static bool isValidStream(IOStream *stream);
+ static bool isSupported(IOStream *stream);
private:
File(const File &);