关于video_source中的ImageLevelInfo数据格式的疑问

请问下面ImageLevelInfo中四个地址代表是什么意思,我想获得图像数据应该用哪个?

struct ImageLevelInfo {-
uint16_t width;-
uint16_t height;-
uint16_t stride;-
uint64_t y_paddr;-
uint64_t c_paddr;-
uint64_t y_vaddr;-
uint64_t c_vaddr;-
};

您好,图像数据在这里面:

uint64_tc_vaddr; Y通道数据

uint64_tc_vaddr; UV通道数据

感谢

请问一下:

y_paddr

c_paddr

这个物理地址暴露出来,一般用来做什么?