The QAbstractVideoBuffer class is an abstraction for video data. More...
#include <QAbstractVideoBuffer>
This class was introduced in Qt Mobility 1.0.
enum | HandleType { NoHandle, GLTextureHandle, XvShmImageHandle, CoreImageHandle, QPixmapHandle, UserHandle } |
enum | MapMode { NotMapped, ReadOnly, WriteOnly, ReadWrite } |
QAbstractVideoBuffer ( HandleType type ) | |
virtual | ~QAbstractVideoBuffer () |
virtual QVariant | handle () const |
HandleType | handleType () const |
virtual uchar * | map ( MapMode mode, int * numBytes, int * bytesPerLine ) = 0 |
virtual MapMode | mapMode () const = 0 |
virtual void | unmap () = 0 |
The QAbstractVideoBuffer class is an abstraction for video data.
The QVideoFrame class makes use of a QAbstractVideoBuffer internally to reference a buffer of video data. Creating a subclass of QAbstractVideoBuffer will allow you to construct video frames from preallocated or static buffers.
The contents of a buffer can be accessed by mapping the buffer to memory using the map() function which returns a pointer to memory containing the contents of the the video buffer. The memory returned by map() is released by calling the unmap() function.
The handle() of a buffer may also be used to manipulate it's contents using type specific APIs. The type of a buffer's handle is given by the handleType() function.
See also QVideoFrame.
Identifies the type of a video buffers handle.
Constant | Value | Description |
---|---|---|
QAbstractVideoBuffer::NoHandle | 0 | The buffer has no handle, its data can only be accessed by mapping the buffer. |
QAbstractVideoBuffer::GLTextureHandle | 1 | The handle of the buffer is an OpenGL texture ID. |
QAbstractVideoBuffer::XvShmImageHandle | 2 | The handle contains pointer to shared memory XVideo image. |
QAbstractVideoBuffer::CoreImageHandle | 3 | The handle contains pointer to Mac OS X CIImage. |
QAbstractVideoBuffer::QPixmapHandle | 4 | The handle of the buffer is a QPixmap. |
QAbstractVideoBuffer::UserHandle | 1000 | Start value for user defined handle types. |
See also handleType().
Enumerates how a video buffer's data is mapped to memory.
Constant | Value | Description |
---|---|---|
QAbstractVideoBuffer::NotMapped | 0x00 | The video buffer has is not mapped to memory. |
QAbstractVideoBuffer::ReadOnly | 0x01 | The mapped memory is populated with data from the video buffer when mapped, but the content of the mapped memory may be discarded when unmapped. |
QAbstractVideoBuffer::WriteOnly | 0x02 | The mapped memory is uninitialized when mapped, and the content will be used to populate the video buffer when unmapped. |
QAbstractVideoBuffer::ReadWrite | ReadOnly | WriteOnly | The mapped memory is populated with data from the video buffer, and the video buffer is repopulated with the content of the mapped memory. |
Constructs an abstract video buffer of the given type.
Destroys an abstract video buffer.
Returns a type specific handle to the data buffer.
The type of the handle is given by handleType() function.
This function was introduced in Qt Mobility 1.0.
See also handleType().
Returns the type of a video buffer's handle.
This function was introduced in Qt Mobility 1.0.
See also handle().
Maps the contents of a video buffer to memory.
The map mode indicates whether the contents of the mapped memory should be read from and/or written to the buffer. If the map mode includes the QAbstractVideoBuffer::ReadOnly flag the mapped memory will be populated with the content of the video buffer when mapped. If the map mode includes the QAbstractVideoBuffer::WriteOnly flag the content of the mapped memory will be persisted in the buffer when unmapped.
When access to the data is no longer needed be sure to call the unmap() function to release the mapped memory.
Returns a pointer to the mapped memory region, or a null pointer if the mapping failed. The size in bytes of the mapped memory region is returned in numBytes, and the line stride in bytesPerLine.
When access to the data is no longer needed be sure to unmap() the buffer.
Note: Writing to memory that is mapped as read-only is undefined, and may result in changes to shared data.
This function was introduced in Qt Mobility 1.0.
See also unmap() and mapMode().
Returns the mode a video buffer is mapped in.
This function was introduced in Qt Mobility 1.0.
See also map().
Releases the memory mapped by the map() function
If the MapMode included the QAbstractVideoBuffer::WriteOnly flag this will persist the current content of the mapped memory to the video frame.
This function was introduced in Qt Mobility 1.0.
See also map().
© 2008-2011 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.
All other trademarks are property of their respective owners. Privacy Policy
Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.
Alternatively, this document may be used under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation.