summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYoann Lopes <yoann.lopes@digia.com>2014-05-19 14:34:57 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-05-19 14:57:23 +0200
commit93e73fd8eeccfd42430acaa760bdeb8dc6f17f39 (patch)
treef7c82329543e9f782b378a7701f8be18a856a608
parente9e10b2b1f025c3aa53a8904ec0a65e88fcb2887 (diff)
downloadqtmultimedia-93e73fd8eeccfd42430acaa760bdeb8dc6f17f39.tar.gz
DirectShow: remove debug output.
Task-number: QTBUG-38924 Change-Id: Ibc08fd99f6eb10035e4d7da963d4d384012bbdbf Reviewed-by: Mitch Curtis <mitch.curtis@digia.com>
-rw-r--r--src/plugins/directshow/player/directshowiosource.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/plugins/directshow/player/directshowiosource.cpp b/src/plugins/directshow/player/directshowiosource.cpp
index acce1de28..c6cb21824 100644
--- a/src/plugins/directshow/player/directshowiosource.cpp
+++ b/src/plugins/directshow/player/directshowiosource.cpp
@@ -622,17 +622,10 @@ DirectShowRcSource::DirectShowRcSource(DirectShowEventLoop *loop)
bool DirectShowRcSource::open(const QUrl &url)
{
m_file.moveToThread(QCoreApplication::instance()->thread());
-
m_file.setFileName(QLatin1Char(':') + url.path());
- qDebug("qrc file %s", qPrintable(m_file.fileName()));
-
if (m_file.open(QIODevice::ReadOnly)) {
- qDebug("Size %d", int(m_file.size()));
- qDebug("Sequential %d", int(m_file.isSequential()));
-
setDevice(&m_file);
-
return true;
} else {
return false;