Commit 0b946f5a authored by Jochen Seemann's avatar Jochen Seemann
Browse files

add mirrored API to QVideoSurfaceFormat


Adds setters and getters for the already implemented
property of QVideoSurfaceFormat.

Task-number: QTBUG-47606
Change-Id: Icf509af80c13e80568645d90c6a621cd30cf776c
Reviewed-by: default avatarChristian Stromme <christian.stromme@qt.io>
Showing with 32 additions and 0 deletions
...@@ -449,6 +449,35 @@ void QVideoSurfaceFormat::setYCbCrColorSpace(QVideoSurfaceFormat::YCbCrColorSpac ...@@ -449,6 +449,35 @@ void QVideoSurfaceFormat::setYCbCrColorSpace(QVideoSurfaceFormat::YCbCrColorSpac
d->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 QVideoSurfaceFormat::isMirrored() const
{
return d->mirrored;
}
/*!
Sets 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.
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 QVideoSurfaceFormat::setMirrored(bool mirrored)
{
d->mirrored = mirrored;
}
/*! /*!
Returns a suggested size in pixels for the video stream. Returns a suggested size in pixels for the video stream.
......
...@@ -117,6 +117,9 @@ public: ...@@ -117,6 +117,9 @@ public:
YCbCrColorSpace yCbCrColorSpace() const; YCbCrColorSpace yCbCrColorSpace() const;
void setYCbCrColorSpace(YCbCrColorSpace colorSpace); void setYCbCrColorSpace(YCbCrColorSpace colorSpace);
bool isMirrored() const;
void setMirrored(bool mirrored);
QSize sizeHint() const; QSize sizeHint() const;
QList<QByteArray> propertyNames() const; QList<QByteArray> propertyNames() const;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment