aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/vorbis
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2011-09-17 20:02:11 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2011-09-17 20:02:11 +0000
commit602a9f7bb89ad5bb4d2fc649593646f333e6c6e0 (patch)
treee6036302edadb6eea95f6ed5a0b4e9798deb5edc /src/plugins/Input/vorbis
parentd1ff2bb87f65bc08142f9d38cd3887eda0e990cc (diff)
downloadqmmp-602a9f7bb89ad5bb4d2fc649593646f333e6c6e0.tar.gz
qmmp-602a9f7bb89ad5bb4d2fc649593646f333e6c6e0.tar.bz2
qmmp-602a9f7bb89ad5bb4d2fc649593646f333e6c6e0.zip
decoder api changes: removed StateHandler usage
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2354 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/vorbis')
-rw-r--r--src/plugins/Input/vorbis/decoder_vorbis.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/Input/vorbis/decoder_vorbis.cpp b/src/plugins/Input/vorbis/decoder_vorbis.cpp
index 7c87822e3..d1bddb0c9 100644
--- a/src/plugins/Input/vorbis/decoder_vorbis.cpp
+++ b/src/plugins/Input/vorbis/decoder_vorbis.cpp
@@ -23,7 +23,6 @@ static size_t oggread (void *buf, size_t size, size_t nmemb, void *src)
return len / size;
}
-
static int oggseek(void *src, int64_t offset, int whence)
{
DecoderVorbis *dogg = (DecoderVorbis *) src;
@@ -215,7 +214,7 @@ void DecoderVorbis::updateTags()
+ strlen ("discnumber="))));
}
metaData.insert(Qmmp::URL, m_url);
- StateHandler::instance()->dispatch(metaData);
+ addMetaData(metaData);
}
void DecoderVorbis::seek(qint64 time)