DVPP图像输出定义。
1 2 3 4 5 6 7 8 | struct DvppImageOutput { uint32_t width; uint32_t height; int32_t components; uint32_t widthStride; uint32_t heightStride; uint32_t outImgDatasize; } |
参数名 |
说明 |
---|---|
width |
输出图像的宽度。 |
height |
输出图像的高度。 |
components |
输出图像的通道个数。 |
widthStride |
输出对齐后的图像宽。 |
heightStride |
输出对齐后的图像高。 |
outImgDatasize |
输出图像的内存大小。 |