summaryrefslogtreecommitdiffstats
path: root/src/multimedia/video
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-04-01 17:09:45 +0200
committerFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-04-07 17:21:38 +0000
commit4d17db19f895ddaa778120c346d8a6a33a710194 (patch)
tree5c931f662f4a793cb82fb5f2099f595990e25437 /src/multimedia/video
parent9fccf8064dea35f324f822b30116828acc3855a9 (diff)
Fix debug stream operators.
- Use QDebugStateSaver to restore space setting in stream operators instead of returning dbg.space() which breaks formatting on streams that already have nospace() set. - Fix some single character string constants, streamline code. Change-Id: I18ae7324b172ea801aa9b5fe56ddf6fe527fdde9 Reviewed-by: Yoann Lopes <yoann.lopes@theqtcompany.com>
Diffstat (limited to 'src/multimedia/video')
-rw-r--r--src/multimedia/video/qabstractvideobuffer.cpp24
-rw-r--r--src/multimedia/video/qabstractvideosurface.cpp18
-rw-r--r--src/multimedia/video/qvideoframe.cpp93
-rw-r--r--src/multimedia/video/qvideosurfaceformat.cpp43
4 files changed, 98 insertions, 80 deletions
diff --git a/src/multimedia/video/qabstractvideobuffer.cpp b/src/multimedia/video/qabstractvideobuffer.cpp
index 657e4fc8d..ff29bd0b4 100644
--- a/src/multimedia/video/qabstractvideobuffer.cpp
+++ b/src/multimedia/video/qabstractvideobuffer.cpp
@@ -350,33 +350,37 @@ uchar *QAbstractPlanarVideoBuffer::map(MapMode mode, int *numBytes, int *bytesPe
#ifndef QT_NO_DEBUG_STREAM
QDebug operator<<(QDebug dbg, QAbstractVideoBuffer::HandleType type)
{
+ QDebugStateSaver saver(dbg);
+ dbg.nospace();
switch (type) {
case QAbstractVideoBuffer::NoHandle:
- return dbg.nospace() << "NoHandle";
+ return dbg << "NoHandle";
case QAbstractVideoBuffer::GLTextureHandle:
- return dbg.nospace() << "GLTextureHandle";
+ return dbg << "GLTextureHandle";
case QAbstractVideoBuffer::XvShmImageHandle:
- return dbg.nospace() << "XvShmImageHandle";
+ return dbg << "XvShmImageHandle";
case QAbstractVideoBuffer::CoreImageHandle:
- return dbg.nospace() << "CoreImageHandle";
+ return dbg << "CoreImageHandle";
case QAbstractVideoBuffer::QPixmapHandle:
- return dbg.nospace() << "QPixmapHandle";
+ return dbg << "QPixmapHandle";
default:
- return dbg.nospace() << QString(QLatin1String("UserHandle(%1)")).arg(int(type)).toLatin1().constData();
+ return dbg << "UserHandle(" << int(type) << ')';
}
}
QDebug operator<<(QDebug dbg, QAbstractVideoBuffer::MapMode mode)
{
+ QDebugStateSaver saver(dbg);
+ dbg.nospace();
switch (mode) {
case QAbstractVideoBuffer::ReadOnly:
- return dbg.nospace() << "ReadOnly";
+ return dbg << "ReadOnly";
case QAbstractVideoBuffer::ReadWrite:
- return dbg.nospace() << "ReadWrite";
+ return dbg << "ReadWrite";
case QAbstractVideoBuffer::WriteOnly:
- return dbg.nospace() << "WriteOnly";
+ return dbg << "WriteOnly";
default:
- return dbg.nospace() << "NotMapped";
+ return dbg << "NotMapped";
}
}
#endif
diff --git a/src/multimedia/video/qabstractvideosurface.cpp b/src/multimedia/video/qabstractvideosurface.cpp
index d09c4e4c4..c86d52dd2 100644
--- a/src/multimedia/video/qabstractvideosurface.cpp
+++ b/src/multimedia/video/qabstractvideosurface.cpp
@@ -353,18 +353,26 @@ void QAbstractVideoSurface::setNativeResolution(const QSize &resolution)
#ifndef QT_NO_DEBUG_STREAM
QDebug operator<<(QDebug dbg, const QAbstractVideoSurface::Error& error)
{
+ QDebugStateSaver saver(dbg);
+ dbg.nospace();
switch (error) {
case QAbstractVideoSurface::UnsupportedFormatError:
- return dbg.nospace() << "UnsupportedFormatError";
+ dbg << "UnsupportedFormatError";
+ break;
case QAbstractVideoSurface::IncorrectFormatError:
- return dbg.nospace() << "IncorrectFormatError";
+ dbg << "IncorrectFormatError";
+ break;
case QAbstractVideoSurface::StoppedError:
- return dbg.nospace() << "StoppedError";
+ dbg << "StoppedError";
+ break;
case QAbstractVideoSurface::ResourceError:
- return dbg.nospace() << "ResourceError";
+ dbg << "ResourceError";
+ break;
default:
- return dbg.nospace() << "NoError";
+ dbg << "NoError";
+ break;
}
+ return dbg;
}
#endif
diff --git a/src/multimedia/video/qvideoframe.cpp b/src/multimedia/video/qvideoframe.cpp
index 95f6acb36..4e9e28a4d 100644
--- a/src/multimedia/video/qvideoframe.cpp
+++ b/src/multimedia/video/qvideoframe.cpp
@@ -1002,90 +1002,94 @@ QImage::Format QVideoFrame::imageFormatFromPixelFormat(PixelFormat format)
#ifndef QT_NO_DEBUG_STREAM
QDebug operator<<(QDebug dbg, QVideoFrame::PixelFormat pf)
{
+ QDebugStateSaver saver(dbg);
+ dbg.nospace();
switch (pf) {
case QVideoFrame::Format_Invalid:
- return dbg.nospace() << "Format_Invalid";
+ return dbg << "Format_Invalid";
case QVideoFrame::Format_ARGB32:
- return dbg.nospace() << "Format_ARGB32";
+ return dbg << "Format_ARGB32";
case QVideoFrame::Format_ARGB32_Premultiplied:
- return dbg.nospace() << "Format_ARGB32_Premultiplied";
+ return dbg << "Format_ARGB32_Premultiplied";
case QVideoFrame::Format_RGB32:
- return dbg.nospace() << "Format_RGB32";
+ return dbg << "Format_RGB32";
case QVideoFrame::Format_RGB24:
- return dbg.nospace() << "Format_RGB24";
+ return dbg << "Format_RGB24";
case QVideoFrame::Format_RGB565:
- return dbg.nospace() << "Format_RGB565";
+ return dbg << "Format_RGB565";
case QVideoFrame::Format_RGB555:
- return dbg.nospace() << "Format_RGB555";
+ return dbg << "Format_RGB555";
case QVideoFrame::Format_ARGB8565_Premultiplied:
- return dbg.nospace() << "Format_ARGB8565_Premultiplied";
+ return dbg << "Format_ARGB8565_Premultiplied";
case QVideoFrame::Format_BGRA32:
- return dbg.nospace() << "Format_BGRA32";
+ return dbg << "Format_BGRA32";
case QVideoFrame::Format_BGRA32_Premultiplied:
- return dbg.nospace() << "Format_BGRA32_Premultiplied";
+ return dbg << "Format_BGRA32_Premultiplied";
case QVideoFrame::Format_BGR32:
- return dbg.nospace() << "Format_BGR32";
+ return dbg << "Format_BGR32";
case QVideoFrame::Format_BGR24:
- return dbg.nospace() << "Format_BGR24";
+ return dbg << "Format_BGR24";
case QVideoFrame::Format_BGR565:
- return dbg.nospace() << "Format_BGR565";
+ return dbg << "Format_BGR565";
case QVideoFrame::Format_BGR555:
- return dbg.nospace() << "Format_BGR555";
+ return dbg << "Format_BGR555";
case QVideoFrame::Format_BGRA5658_Premultiplied:
- return dbg.nospace() << "Format_BGRA5658_Premultiplied";
+ return dbg << "Format_BGRA5658_Premultiplied";
case QVideoFrame::Format_AYUV444:
- return dbg.nospace() << "Format_AYUV444";
+ return dbg << "Format_AYUV444";
case QVideoFrame::Format_AYUV444_Premultiplied:
- return dbg.nospace() << "Format_AYUV444_Premultiplied";
+ return dbg << "Format_AYUV444_Premultiplied";
case QVideoFrame::Format_YUV444:
- return dbg.nospace() << "Format_YUV444";
+ return dbg << "Format_YUV444";
case QVideoFrame::Format_YUV420P:
- return dbg.nospace() << "Format_YUV420P";
+ return dbg << "Format_YUV420P";
case QVideoFrame::Format_YV12:
- return dbg.nospace() << "Format_YV12";
+ return dbg << "Format_YV12";
case QVideoFrame::Format_UYVY:
- return dbg.nospace() << "Format_UYVY";
+ return dbg << "Format_UYVY";
case QVideoFrame::Format_YUYV:
- return dbg.nospace() << "Format_YUYV";
+ return dbg << "Format_YUYV";
case QVideoFrame::Format_NV12:
- return dbg.nospace() << "Format_NV12";
+ return dbg << "Format_NV12";
case QVideoFrame::Format_NV21:
- return dbg.nospace() << "Format_NV21";
+ return dbg << "Format_NV21";
case QVideoFrame::Format_IMC1:
- return dbg.nospace() << "Format_IMC1";
+ return dbg << "Format_IMC1";
case QVideoFrame::Format_IMC2:
- return dbg.nospace() << "Format_IMC2";
+ return dbg << "Format_IMC2";
case QVideoFrame::Format_IMC3:
- return dbg.nospace() << "Format_IMC3";
+ return dbg << "Format_IMC3";
case QVideoFrame::Format_IMC4:
- return dbg.nospace() << "Format_IMC4";
+ return dbg << "Format_IMC4";
case QVideoFrame::Format_Y8:
- return dbg.nospace() << "Format_Y8";
+ return dbg << "Format_Y8";
case QVideoFrame::Format_Y16:
- return dbg.nospace() << "Format_Y16";
+ return dbg << "Format_Y16";
case QVideoFrame::Format_Jpeg:
- return dbg.nospace() << "Format_Jpeg";
+ return dbg << "Format_Jpeg";
case QVideoFrame::Format_AdobeDng:
- return dbg.nospace() << "Format_AdobeDng";
+ return dbg << "Format_AdobeDng";
case QVideoFrame::Format_CameraRaw:
- return dbg.nospace() << "Format_CameraRaw";
+ return dbg << "Format_CameraRaw";
default:
- return dbg.nospace() << QString(QLatin1String("UserType(%1)" )).arg(int(pf)).toLatin1().constData();
+ return dbg << QString(QLatin1String("UserType(%1)" )).arg(int(pf)).toLatin1().constData();
}
}
QDebug operator<<(QDebug dbg, QVideoFrame::FieldType f)
{
+ QDebugStateSaver saver(dbg);
+ dbg.nospace();
switch (f) {
case QVideoFrame::TopField:
- return dbg.nospace() << "TopField";
+ return dbg << "TopField";
case QVideoFrame::BottomField:
- return dbg.nospace() << "BottomField";
+ return dbg << "BottomField";
case QVideoFrame::InterlacedFrame:
- return dbg.nospace() << "InterlacedFrame";
+ return dbg << "InterlacedFrame";
default:
- return dbg.nospace() << "ProgressiveFrame";
+ return dbg << "ProgressiveFrame";
}
}
@@ -1161,16 +1165,17 @@ static QString qFormatTimeStamps(qint64 start, qint64 end)
QDebug operator<<(QDebug dbg, const QVideoFrame& f)
{
- dbg.nospace() << "QVideoFrame(" << f.size() << ", "
+ QDebugStateSaver saver(dbg);
+ dbg.nospace();
+ dbg << "QVideoFrame(" << f.size() << ", "
<< f.pixelFormat() << ", "
<< f.handleType() << ", "
<< f.mapMode() << ", "
<< qFormatTimeStamps(f.startTime(), f.endTime()).toLatin1().constData();
- if (f.availableMetaData().count()) {
- dbg.nospace() << ", metaData: ";
- dbg.nospace() << f.availableMetaData();
- }
- return dbg.nospace() << ")";
+ if (f.availableMetaData().count())
+ dbg << ", metaData: " << f.availableMetaData();
+ dbg << ')';
+ return dbg;
}
#endif
diff --git a/src/multimedia/video/qvideosurfaceformat.cpp b/src/multimedia/video/qvideosurfaceformat.cpp
index 1361dbc7e..4c616b898 100644
--- a/src/multimedia/video/qvideosurfaceformat.cpp
+++ b/src/multimedia/video/qvideosurfaceformat.cpp
@@ -569,61 +569,62 @@ void QVideoSurfaceFormat::setProperty(const char *name, const QVariant &value)
#ifndef QT_NO_DEBUG_STREAM
QDebug operator<<(QDebug dbg, QVideoSurfaceFormat::YCbCrColorSpace cs)
{
- QDebug nospace = dbg.nospace();
+ QDebugStateSaver saver(dbg);
+ dbg.nospace();
switch (cs) {
case QVideoSurfaceFormat::YCbCr_BT601:
- nospace << "YCbCr_BT601";
+ dbg << "YCbCr_BT601";
break;
case QVideoSurfaceFormat::YCbCr_BT709:
- nospace << "YCbCr_BT709";
+ dbg << "YCbCr_BT709";
break;
case QVideoSurfaceFormat::YCbCr_JPEG:
- nospace << "YCbCr_JPEG";
+ dbg << "YCbCr_JPEG";
break;
case QVideoSurfaceFormat::YCbCr_xvYCC601:
- nospace << "YCbCr_xvYCC601";
+ dbg << "YCbCr_xvYCC601";
break;
case QVideoSurfaceFormat::YCbCr_xvYCC709:
- nospace << "YCbCr_xvYCC709";
+ dbg << "YCbCr_xvYCC709";
break;
case QVideoSurfaceFormat::YCbCr_CustomMatrix:
- nospace << "YCbCr_CustomMatrix";
+ dbg << "YCbCr_CustomMatrix";
break;
default:
- nospace << "YCbCr_Undefined";
+ dbg << "YCbCr_Undefined";
break;
}
- return nospace;
+ return dbg;
}
QDebug operator<<(QDebug dbg, QVideoSurfaceFormat::Direction dir)
{
- QDebug nospace = dbg.nospace();
+ QDebugStateSaver saver(dbg);
+ dbg.nospace();
switch (dir) {
case QVideoSurfaceFormat::BottomToTop:
- nospace << "BottomToTop";
+ dbg << "BottomToTop";
break;
case QVideoSurfaceFormat::TopToBottom:
- nospace << "TopToBottom";
+ dbg << "TopToBottom";
break;
}
- return nospace;
+ return dbg;
}
QDebug operator<<(QDebug dbg, const QVideoSurfaceFormat &f)
{
- dbg.nospace() << "QVideoSurfaceFormat(" << f.pixelFormat();
- dbg.nospace() << ", " << f.frameSize();
- dbg.nospace() << ", viewport=" << f.viewport();
- dbg.nospace() << ", pixelAspectRatio=" << f.pixelAspectRatio();
- dbg.nospace() << ", handleType=" << f.handleType();
- dbg.nospace() << ", yCbCrColorSpace=" << f.yCbCrColorSpace();
- dbg.nospace() << ")";
+ QDebugStateSaver saver(dbg);
+ dbg.nospace();
+ dbg << "QVideoSurfaceFormat(" << f.pixelFormat() << ", " << f.frameSize()
+ << ", viewport=" << f.viewport() << ", pixelAspectRatio=" << f.pixelAspectRatio()
+ << ", handleType=" << f.handleType() << ", yCbCrColorSpace=" << f.yCbCrColorSpace()
+ << ')';
foreach(const QByteArray& propertyName, f.propertyNames())
dbg << "\n " << propertyName.data() << " = " << f.property(propertyName.data());
- return dbg.space();
+ return dbg;
}
#endif