aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/flac/replaygainreader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/Input/flac/replaygainreader.cpp')
-rw-r--r--src/plugins/Input/flac/replaygainreader.cpp18
1 files changed, 14 insertions, 4 deletions
diff --git a/src/plugins/Input/flac/replaygainreader.cpp b/src/plugins/Input/flac/replaygainreader.cpp
index 27361e12b..1968ceb00 100644
--- a/src/plugins/Input/flac/replaygainreader.cpp
+++ b/src/plugins/Input/flac/replaygainreader.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2009 by Ilya Kotov *
+ * Copyright (C) 2009-2010 by Ilya Kotov *
* forkotov02@hotmail.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -22,13 +22,23 @@
#include <taglib/tag.h>
#include <taglib/fileref.h>
#include <taglib/flacfile.h>
+#include <taglib/oggflacfile.h>
#include "replaygainreader.h"
ReplayGainReader::ReplayGainReader(const QString &path)
{
- TagLib::FLAC::File fileRef(path.toLocal8Bit ().constData());
- if(fileRef.xiphComment())
- readVorbisComment(fileRef.xiphComment());
+ if(path.endsWith("*.flac"))
+ {
+ TagLib::FLAC::File fileRef(path.toLocal8Bit ().constData());
+ if(fileRef.xiphComment())
+ readVorbisComment(fileRef.xiphComment());
+ }
+ else if(path.endsWith("*.oga"))
+ {
+ TagLib::Ogg::FLAC::File fileRef(path.toLocal8Bit ().constData());
+ if(fileRef.tag())
+ readVorbisComment(fileRef.tag());
+ }
}
QMap <Qmmp::ReplayGainKey, double> ReplayGainReader::replayGainInfo() const