DirectShow: remove debug output.
authorYoann Lopes <yoann.lopes@digia.com>
Mon, 19 May 2014 12:34:57 +0000 (14:34 +0200)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Mon, 19 May 2014 12:57:23 +0000 (14:57 +0200)
Task-number: QTBUG-38924
Change-Id: Ibc08fd99f6eb10035e4d7da963d4d384012bbdbf
Reviewed-by: Mitch Curtis <mitch.curtis@digia.com>
src/plugins/directshow/player/directshowiosource.cpp

index acce1de..c6cb218 100644 (file)
@@ -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;