QAbstractVideoBuffer Class Reference

[ QtMultimedia module]

QAbstractVideoBuffer 类是视频数据的抽象。 更多...

类型

方法


详细描述

The QAbstractVideoBuffer class is an abstraction for video data.

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 () 函数。

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 () 函数。


类型文档编制

QAbstractVideoBuffer.HandleType

标识视频缓冲句柄的类型。

常量 描述
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 缓冲的句柄是 QPixmap .
QAbstractVideoBuffer.UserHandle 1000 Start value for user defined handle 类型。

另请参阅 handleType ().

QAbstractVideoBuffer.MapMode

Enumerates how a video buffer's data is mapped to memory.

常量 描述
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.

另请参阅 mapMode () 和 map ().


方法文档编制

QAbstractVideoBuffer.__init__ ( self , HandleType   type )

构造抽象视频缓冲为给定 type .

QVariant QAbstractVideoBuffer.handle ( self )

返回数据缓冲的特定句柄类型。

句柄类型的给出,通过 handleType () 函数。

另请参阅 handleType ().

HandleType QAbstractVideoBuffer.handleType ( self )

返回视频缓冲的句柄类型。

另请参阅 handle ().

(sip.voidptr, int  numBytes , int  bytesPerLine ) QAbstractVideoBuffer.map ( self , MapMode   mode )

This method is abstract and should be reimplemented in any sub-class.

将视频缓冲内容映射到内存。

映射 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.

注意: Writing to memory that is mapped as read-only is undefined, and may result in changes to shared data.

另请参阅 unmap () 和 mapMode ().

MapMode QAbstractVideoBuffer.mapMode ( self )

This method is abstract and should be reimplemented in any sub-class.

返回视频缓冲映射模式。

另请参阅 map ().

QAbstractVideoBuffer.unmap ( self )

This method is abstract and should be reimplemented in any sub-class.

释放映射内存,映射通过 map () function

MapMode 包括 QAbstractVideoBuffer.WriteOnly flag this will persist the current content of the mapped memory to the video frame.

另请参阅 map ().