/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 2.0 or (at your option) the GNU General ** Public license version 3 or any later version approved by the KDE Free ** Qt Foundation. The licenses are as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-2.0.html and ** https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qvideoframeformat.h" #include "qvideotexturehelper_p.h" #include #include #include #include #include #include QT_BEGIN_NAMESPACE static void initResource() { Q_INIT_RESOURCE(shaders); } class QVideoFrameFormatPrivate : public QSharedData { public: QVideoFrameFormatPrivate() = default; QVideoFrameFormatPrivate( const QSize &size, QVideoFrameFormat::PixelFormat format) : pixelFormat(format) , frameSize(size) , viewport(QPoint(0, 0), size) { } bool operator ==(const QVideoFrameFormatPrivate &other) const { if (pixelFormat == other.pixelFormat && scanLineDirection == other.scanLineDirection && frameSize == other.frameSize && viewport == other.viewport && frameRatesEqual(frameRate, other.frameRate) && ycbcrColorSpace == other.ycbcrColorSpace && mirrored == other.mirrored) return true; return false; } inline static bool frameRatesEqual(qreal r1, qreal r2) { return qAbs(r1 - r2) <= 0.00001 * qMin(qAbs(r1), qAbs(r2)); } QVideoFrameFormat::PixelFormat pixelFormat = QVideoFrameFormat::Format_Invalid; QVideoFrameFormat::Direction scanLineDirection = QVideoFrameFormat::TopToBottom; QSize frameSize; QVideoFrameFormat::YCbCrColorSpace ycbcrColorSpace = QVideoFrameFormat::YCbCr_Undefined; QRect viewport; qreal frameRate = 0.0; bool mirrored = false; }; /*! \class QVideoFrameFormat \brief The QVideoFrameFormat class specifies the stream format of a video presentation surface. \inmodule QtMultimedia \ingroup multimedia \ingroup multimedia_video A video surface presents a stream of video frames. The surface's format describes the type of the frames and determines how they should be presented. The core properties of a video stream required to setup a video surface are the pixel format given by pixelFormat(), and the frame dimensions given by frameSize(). If the surface is to present frames using a frame's handle a surface format will also include a handle type which is given by the handleType() function. The region of a frame that is actually displayed on a video surface is given by the viewport(). A stream may have a viewport less than the entire region of a frame to allow for videos smaller than the nearest optimal size of a video frame. For example the width of a frame may be extended so that the start of each scan line is eight byte aligned. Other common properties are the scanLineDirection(), and frameRate(). Additionally a stream may have some additional type specific properties which are listed by the dynamicPropertyNames() function and can be accessed using the property(), and setProperty() functions. */ /*! \enum QVideoFrameFormat::Direction Enumerates the layout direction of video scan lines. \value TopToBottom Scan lines are arranged from the top of the frame to the bottom. \value BottomToTop Scan lines are arranged from the bottom of the frame to the top. */ /*! \enum QVideoFrameFormat::YCbCrColorSpace Enumerates the Y'CbCr color space of video frames. \value YCbCr_Undefined No color space is specified. \value YCbCr_BT601 A Y'CbCr color space defined by ITU-R recommendation BT.601 with Y value range from 16 to 235, and Cb/Cr range from 16 to 240. Used in standard definition video. \value YCbCr_BT709 A Y'CbCr color space defined by ITU-R BT.709 with the same values range as YCbCr_BT601. Used for HDTV. \value YCbCr_xvYCC601 The BT.601 color space with the value range extended to 0 to 255. It is backward compatibile with BT.601 and uses values outside BT.601 range to represent a wider range of colors. \value YCbCr_xvYCC709 The BT.709 color space with the value range extended to 0 to 255. \value YCbCr_JPEG The full range Y'CbCr color space used in JPEG files. */ /*! Constructs a null video stream format. */ QVideoFrameFormat::QVideoFrameFormat() : d(new QVideoFrameFormatPrivate) { initResource(); } /*! Contructs a description of stream which receives stream of \a type buffers with given frame \a size and pixel \a format. */ QVideoFrameFormat::QVideoFrameFormat( const QSize& size, QVideoFrameFormat::PixelFormat format) : d(new QVideoFrameFormatPrivate(size, format)) { } /*! Constructs a copy of \a other. */ QVideoFrameFormat::QVideoFrameFormat(const QVideoFrameFormat &other) = default; /*! Assigns the values of \a other to this object. */ QVideoFrameFormat &QVideoFrameFormat::operator =(const QVideoFrameFormat &other) = default; /*! Destroys a video stream description. */ QVideoFrameFormat::~QVideoFrameFormat() = default; /*! Identifies if a video surface format has a valid pixel format and frame size. Returns true if the format is valid, and false otherwise. */ bool QVideoFrameFormat::isValid() const { return d->pixelFormat != Format_Invalid && d->frameSize.isValid(); } /*! Returns true if \a other is the same as this video format, and false if they are different. */ bool QVideoFrameFormat::operator ==(const QVideoFrameFormat &other) const { return d == other.d || *d == *other.d; } /*! Returns true if \a other is different to this video format, and false if they are the same. */ bool QVideoFrameFormat::operator !=(const QVideoFrameFormat &other) const { return d != other.d && !(*d == *other.d); } /*! Returns the pixel format of frames in a video stream. */ QVideoFrameFormat::PixelFormat QVideoFrameFormat::pixelFormat() const { return d->pixelFormat; } /*! Returns the dimensions of frames in a video stream. \sa frameWidth(), frameHeight() */ QSize QVideoFrameFormat::frameSize() const { return d->frameSize; } /*! Returns the width of frames in a video stream. \sa frameSize(), frameHeight() */ int QVideoFrameFormat::frameWidth() const { return d->frameSize.width(); } /*! Returns the height of frame in a video stream. */ int QVideoFrameFormat::frameHeight() const { return d->frameSize.height(); } int QVideoFrameFormat::nPlanes() const { return QVideoTextureHelper::textureDescription(d->pixelFormat)->nplanes; } /*! Sets the size of frames in a video stream to \a size. This will reset the viewport() to fill the entire frame. */ void QVideoFrameFormat::setFrameSize(const QSize &size) { d->frameSize = size; d->viewport = QRect(QPoint(0, 0), size); } /*! \overload Sets the \a width and \a height of frames in a video stream. This will reset the viewport() to fill the entire frame. */ void QVideoFrameFormat::setFrameSize(int width, int height) { d->frameSize = QSize(width, height); d->viewport = QRect(0, 0, width, height); } /*! Returns the viewport of a video stream. The viewport is the region of a video frame that is actually displayed. By default the viewport covers an entire frame. */ QRect QVideoFrameFormat::viewport() const { return d->viewport; } /*! Sets the viewport of a video stream to \a viewport. */ void QVideoFrameFormat::setViewport(const QRect &viewport) { d->viewport = viewport; } /*! Returns the direction of scan lines. */ QVideoFrameFormat::Direction QVideoFrameFormat::scanLineDirection() const { return d->scanLineDirection; } /*! Sets the \a direction of scan lines. */ void QVideoFrameFormat::setScanLineDirection(Direction direction) { d->scanLineDirection = direction; } /*! Returns the frame rate of a video stream in frames per second. */ qreal QVideoFrameFormat::frameRate() const { return d->frameRate; } /*! Sets the frame \a rate of a video stream in frames per second. */ void QVideoFrameFormat::setFrameRate(qreal rate) { d->frameRate = rate; } /*! Returns the Y'CbCr color space of a video stream. */ QVideoFrameFormat::YCbCrColorSpace QVideoFrameFormat::yCbCrColorSpace() const { return d->ycbcrColorSpace; } /*! Sets the Y'CbCr color \a space of a video stream. It is only used with raw YUV frame types. */ void QVideoFrameFormat::setYCbCrColorSpace(QVideoFrameFormat::YCbCrColorSpace space) { d->ycbcrColorSpace = space; } /*! Returns \c true if the surface is mirrored around its vertical axis. This is typically needed for video frames coming from a front camera of a mobile device. \note The mirroring here differs from QImage::mirrored, as a vertically mirrored QImage will be mirrored around its x-axis. \since 5.11 */ bool QVideoFrameFormat::isMirrored() const { return d->mirrored; } /*! Sets if the surface is \a mirrored around its vertical axis. This is typically needed for video frames coming from a front camera of a mobile device. Default value is false. \note The mirroring here differs from QImage::mirrored, as a vertically mirrored QImage will be mirrored around its x-axis. \since 5.11 */ void QVideoFrameFormat::setMirrored(bool mirrored) { d->mirrored = mirrored; } /*! Returns a suggested size in pixels for the video stream. This is the same as the size of the viewport. */ QSize QVideoFrameFormat::sizeHint() const { return d->viewport.size(); } QString QVideoFrameFormat::vertexShaderFileName() const { return QVideoTextureHelper::vertexShaderFileName(d->pixelFormat); } QString QVideoFrameFormat::fragmentShaderFileName() const { return QVideoTextureHelper::fragmentShaderFileName(d->pixelFormat); } QByteArray QVideoFrameFormat::uniformData(const QMatrix4x4 &transform, float opacity) const { return QVideoTextureHelper::uniformData(*this, transform, opacity); } /*! Returns a video pixel format equivalent to an image \a format. If there is no equivalent format QVideoFrame::InvalidType is returned instead. \note In general \l QImage does not handle YUV formats. */ QVideoFrameFormat::PixelFormat QVideoFrameFormat::pixelFormatFromImageFormat(QImage::Format format) { switch (format) { case QImage::Format_RGB32: case QImage::Format_RGBX8888: return QVideoFrameFormat::Format_RGB32; case QImage::Format_ARGB32: case QImage::Format_RGBA8888: return QVideoFrameFormat::Format_ARGB32; case QImage::Format_ARGB32_Premultiplied: case QImage::Format_RGBA8888_Premultiplied: return QVideoFrameFormat::Format_ARGB32_Premultiplied; case QImage::Format_Grayscale8: return QVideoFrameFormat::Format_Y8; case QImage::Format_Grayscale16: return QVideoFrameFormat::Format_Y16; default: return QVideoFrameFormat::Format_Invalid; } } /*! Returns an image format equivalent to a video frame pixel \a format. If there is no equivalent format QImage::Format_Invalid is returned instead. \note In general \l QImage does not handle YUV formats. */ QImage::Format QVideoFrameFormat::imageFormatFromPixelFormat(QVideoFrameFormat::PixelFormat format) { switch (format) { case QVideoFrameFormat::Format_ARGB32: return QImage::Format_ARGB32; case QVideoFrameFormat::Format_ARGB32_Premultiplied: return QImage::Format_ARGB32_Premultiplied; case QVideoFrameFormat::Format_RGB32: return QImage::Format_RGB32; case QVideoFrameFormat::Format_Y8: return QImage::Format_Grayscale8; case QVideoFrameFormat::Format_Y16: return QImage::Format_Grayscale16; case QVideoFrameFormat::Format_ABGR32: case QVideoFrameFormat::Format_BGRA32: case QVideoFrameFormat::Format_BGRA32_Premultiplied: case QVideoFrameFormat::Format_BGR32: case QVideoFrameFormat::Format_AYUV444: case QVideoFrameFormat::Format_AYUV444_Premultiplied: case QVideoFrameFormat::Format_YUV420P: case QVideoFrameFormat::Format_YUV422P: case QVideoFrameFormat::Format_YV12: case QVideoFrameFormat::Format_UYVY: case QVideoFrameFormat::Format_YUYV: case QVideoFrameFormat::Format_NV12: case QVideoFrameFormat::Format_NV21: case QVideoFrameFormat::Format_IMC1: case QVideoFrameFormat::Format_IMC2: case QVideoFrameFormat::Format_IMC3: case QVideoFrameFormat::Format_IMC4: case QVideoFrameFormat::Format_P010: case QVideoFrameFormat::Format_P016: case QVideoFrameFormat::Format_Jpeg: case QVideoFrameFormat::Format_Invalid: return QImage::Format_Invalid; } return QImage::Format_Invalid; } #ifndef QT_NO_DEBUG_STREAM QDebug operator<<(QDebug dbg, QVideoFrameFormat::YCbCrColorSpace cs) { QDebugStateSaver saver(dbg); dbg.nospace(); switch (cs) { case QVideoFrameFormat::YCbCr_BT601: dbg << "YCbCr_BT601"; break; case QVideoFrameFormat::YCbCr_BT709: dbg << "YCbCr_BT709"; break; case QVideoFrameFormat::YCbCr_JPEG: dbg << "YCbCr_JPEG"; break; case QVideoFrameFormat::YCbCr_xvYCC601: dbg << "YCbCr_xvYCC601"; break; case QVideoFrameFormat::YCbCr_xvYCC709: dbg << "YCbCr_xvYCC709"; break; default: dbg << "YCbCr_Undefined"; break; } return dbg; } QDebug operator<<(QDebug dbg, QVideoFrameFormat::Direction dir) { QDebugStateSaver saver(dbg); dbg.nospace(); switch (dir) { case QVideoFrameFormat::BottomToTop: dbg << "BottomToTop"; break; case QVideoFrameFormat::TopToBottom: dbg << "TopToBottom"; break; } return dbg; } QDebug operator<<(QDebug dbg, const QVideoFrameFormat &f) { QDebugStateSaver saver(dbg); dbg.nospace(); dbg << "QVideoFrameFormat(" << f.pixelFormat() << ", " << f.frameSize() << ", viewport=" << f.viewport() << ", yCbCrColorSpace=" << f.yCbCrColorSpace() << ')' << "\n pixel format=" << f.pixelFormat() << "\n frame size=" << f.frameSize() << "\n viewport=" << f.viewport() << "\n yCbCrColorSpace=" << f.yCbCrColorSpace() << "\n frameRate=" << f.frameRate() << "\n mirrored=" << f.isMirrored(); return dbg; } QDebug operator<<(QDebug dbg, QVideoFrameFormat::PixelFormat pf) { QDebugStateSaver saver(dbg); dbg.nospace(); switch (pf) { case QVideoFrameFormat::Format_Invalid: return dbg << "Format_Invalid"; case QVideoFrameFormat::Format_ARGB32: return dbg << "Format_ARGB32"; case QVideoFrameFormat::Format_ARGB32_Premultiplied: return dbg << "Format_ARGB32_Premultiplied"; case QVideoFrameFormat::Format_RGB32: return dbg << "Format_RGB32"; case QVideoFrameFormat::Format_BGRA32: return dbg << "Format_BGRA32"; case QVideoFrameFormat::Format_BGRA32_Premultiplied: return dbg << "Format_BGRA32_Premultiplied"; case QVideoFrameFormat::Format_ABGR32: return dbg << "Format_ABGR32"; case QVideoFrameFormat::Format_BGR32: return dbg << "Format_BGR32"; case QVideoFrameFormat::Format_AYUV444: return dbg << "Format_AYUV444"; case QVideoFrameFormat::Format_AYUV444_Premultiplied: return dbg << "Format_AYUV444_Premultiplied"; case QVideoFrameFormat::Format_YUV420P: return dbg << "Format_YUV420P"; case QVideoFrameFormat::Format_YUV422P: return dbg << "Format_YUV422P"; case QVideoFrameFormat::Format_YV12: return dbg << "Format_YV12"; case QVideoFrameFormat::Format_UYVY: return dbg << "Format_UYVY"; case QVideoFrameFormat::Format_YUYV: return dbg << "Format_YUYV"; case QVideoFrameFormat::Format_NV12: return dbg << "Format_NV12"; case QVideoFrameFormat::Format_NV21: return dbg << "Format_NV21"; case QVideoFrameFormat::Format_IMC1: return dbg << "Format_IMC1"; case QVideoFrameFormat::Format_IMC2: return dbg << "Format_IMC2"; case QVideoFrameFormat::Format_IMC3: return dbg << "Format_IMC3"; case QVideoFrameFormat::Format_IMC4: return dbg << "Format_IMC4"; case QVideoFrameFormat::Format_Y8: return dbg << "Format_Y8"; case QVideoFrameFormat::Format_Y16: return dbg << "Format_Y16"; case QVideoFrameFormat::Format_P010: return dbg << "Format_P010"; case QVideoFrameFormat::Format_P016: return dbg << "Format_P016"; case QVideoFrameFormat::Format_Jpeg: return dbg << "Format_Jpeg"; default: return dbg << QString(QLatin1String("UserType(%1)" )).arg(int(pf)).toLatin1().constData(); } } #endif QT_END_NAMESPACE