aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Transports/mms/mmsinputfactory.cpp
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2017-02-12 08:42:41 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2017-02-12 08:42:41 +0000
commit8a090df03389ae9af82efc66af114dc504966d8e (patch)
tree4a1a0ba27e91a5667a27850c64972c0b5f5b783f /src/plugins/Transports/mms/mmsinputfactory.cpp
parent32fcc71de971bc4c1c2e013bd9cbfe16241873bf (diff)
downloadqmmp-8a090df03389ae9af82efc66af114dc504966d8e.tar.gz
qmmp-8a090df03389ae9af82efc66af114dc504966d8e.tar.bz2
qmmp-8a090df03389ae9af82efc66af114dc504966d8e.zip
mad: fixed mp3 wav detection
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7036 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Transports/mms/mmsinputfactory.cpp')
0 files changed, 0 insertions, 0 deletions
s="hl com"> ***************************************************************************/ #include "streamreader.h" #include "httpinputsource.h" HTTPInputSource::HTTPInputSource(const QString &url, QObject *parent) : InputSource(url,parent) { m_reader = new StreamReader(url, this); connect(m_reader, SIGNAL(readyRead()),SLOT(open())); } QIODevice *HTTPInputSource::ioDevice() { return m_reader; } bool HTTPInputSource::initialize() { m_reader->downloadFile(); return true; }