![]() |
Home · All Classes · All Functions · Overviews |
The QVideoSurfaceFormat class specifies the stream format of a video presentation surface. More...
#include <QVideoSurfaceFormat>
This class is under development and is subject to change.
This class is not part of the Qt GUI Framework Edition.
This class was introduced in Qt 4.6.
enum | Direction { TopToBottom, BottomToTop } |
typedef | FrameRate |
enum | ViewportMode { ResetViewport, KeepViewport } |
enum | YuvColorSpace { YCbCr_Undefined, YCbCr_BT601, YCbCr_BT709, YCbCr_xvYCC601, YCbCr_xvYCC709, YCbCr_JPEG } |
QVideoSurfaceFormat () | |
QVideoSurfaceFormat ( const QSize & size, QVideoFrame::PixelFormat format, QAbstractVideoBuffer::HandleType type = QAbstractVideoBuffer::NoHandle ) | |
QVideoSurfaceFormat ( const QVideoSurfaceFormat & other ) | |
~QVideoSurfaceFormat () | |
int | frameHeight () const |
FrameRate | frameRate () const |
QSize | frameSize () const |
int | frameWidth () const |
QAbstractVideoBuffer::HandleType | handleType () const |
bool | isValid () const |
QSize | pixelAspectRatio () const |
QVideoFrame::PixelFormat | pixelFormat () const |
QVariant | property ( const char * name ) const |
QList<QByteArray> | propertyNames () const |
Direction | scanLineDirection () const |
void | setFrameRate ( const FrameRate & rate ) |
void | setFrameRate ( int numerator, int denominator = 1 ) |
void | setFrameSize ( const QSize & size, ViewportMode mode = ResetViewport ) |
void | setFrameSize ( int width, int height, ViewportMode mode = ResetViewport ) |
void | setPixelAspectRatio ( const QSize & ratio ) |
void | setPixelAspectRatio ( int horizontal, int vertical ) |
void | setProperty ( const char * name, const QVariant & value ) |
void | setScanLineDirection ( Direction direction ) |
void | setViewport ( const QRect & viewport ) |
void | setYuvColorSpace ( YuvColorSpace space ) |
QSize | sizeHint () const |
QRect | viewport () const |
YuvColorSpace | yuvColorSpace () const |
bool | operator!= ( const QVideoSurfaceFormat & other ) const |
QVideoSurfaceFormat & | operator= ( const QVideoSurfaceFormat & other ) |
bool | operator== ( const QVideoSurfaceFormat & other ) const |
The QVideoSurfaceFormat class specifies the stream format of a video presentation surface.
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 pixelAspectRatio(), 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.
Enumerates the layout direction of video scan lines.
Constant | Value | Description |
---|---|---|
QVideoSurfaceFormat::TopToBottom | 0 | Scan lines are arranged from the top of the frame to the bottom. |
QVideoSurfaceFormat::BottomToTop | 1 | Scan lines are arranged from the bottom of the frame to the top. |
A pair of integers representing the frame rate of a video stream.
The first number is the numerator and the second the denominator.
Enumerates the methods for updating the stream viewport when the frame size is changed.
Constant | Value | Description |
---|---|---|
QVideoSurfaceFormat::ResetViewport | 0 | The viewport is reset to cover an entire frame. |
QVideoSurfaceFormat::KeepViewport | 1 | The viewport is kept within the bounds the frame. |
Enumerates the YUV color space of video frames.
Constant | Value | Description |
---|---|---|
QVideoSurfaceFormat::YCbCr_Undefined | 0 | No color space is specified. |
QVideoSurfaceFormat::YCbCr_BT601 | 1 | 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. |
QVideoSurfaceFormat::YCbCr_BT709 | 2 | A Y'CbCr color space defined by ITU-R BT.709 with the same values range as YCbCr_BT601. Used for HDTV. |
QVideoSurfaceFormat::YCbCr_xvYCC601 | 3 | 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 wider colors range. |
QVideoSurfaceFormat::YCbCr_xvYCC709 | 4 | The BT.709 color space with the value range extended to 0 to 255. |
QVideoSurfaceFormat::YCbCr_JPEG | 5 | The full range Y'CbCr color space used in JPEG files. |
Constructs a null video stream format.
Contructs a description of stream which receives stream of type buffers with given frame size and pixel format.
Constructs a copy of other.
Destroys a video stream description.
Returns the height of frame in a video stream.
Returns the frame rate of a video stream.
The frame rate is a rational number represented by a pair of integers. The first integer is the numerator and the second the denominator.
See also setFrameRate().
Returns the size of frames in a video stream.
See also setFrameSize(), frameWidth(), and frameHeight().
Returns the width of frames in a video stream.
See also frameSize() and frameHeight().
Returns the type of handle the surface uses to present the frame data.
If the handle type is QAbstractVideoBuffer::NoHandle buffers with any handle type are valid provided they can be mapped with the QAbstractVideoBuffer::ReadOnly flag. If the handleType() is not QAbstractVideoBuffer::NoHandle then the handle type of the buffer be the same as that of the surface format.
Identifies if a video surface format has a valid pixel format and frame size.
Returns true if the format is valid, and false otherwise.
Returns a video stream's pixel aspect ratio.
See also setPixelAspectRatio().
Returns the pixel format of frames in a video stream.
Returns the value of the video format's name property.
See also setProperty().
Returns a list of video format dynamic property names.
Returns the direction of scan lines.
See also setScanLineDirection().
Sets the frame rate of a video stream.
The frame rate is a rational number represented by a pair of integers. The first integer is the numerator and the second the denominator.
See also frameRate().
This is an overloaded function.
Sets the numerator and denominator of the frame rate of a video stream.
Sets the size of frames in a video stream to size.
The viewport mode indicates how the view port should be updated.
See also frameSize().
This is an overloaded function.
Sets the width and height of frames in a video stream.
The viewport mode indicates how the view port should be updated.
Sets a video stream's pixel aspect ratio.
See also pixelAspectRatio().
This is an overloaded function.
Sets the horizontal and vertical elements of a video stream's pixel aspect ratio.
Sets the video format's name property to value.
See also property().
Sets the direction of scan lines.
See also scanLineDirection().
Sets the viewport of a video stream to viewport.
See also viewport().
Sets a YUV color space of a video stream. It is only used with raw YUV frame types.
See also yuvColorSpace().
Returns a suggested size in pixels for the video stream.
This is the size of the viewport scaled according to the pixel aspect ratio.
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.
See also setViewport().
Returns a YUV color space of a video stream.
See also setYuvColorSpace().
Returns true if other is different to a video format, and false if they are the same.
Assigns the values of other to a video stream description.
Returns true if other is the same as a video format, and false if they are the different.
Copyright © 2009 Nokia Corporation and/or its subsidiary(-ies) | Trademarks | Qt 4.6.0 |