Lines Matching refs:attribTpi
214 VASurfaceAttributeTPI attribTpi; in VAMappedHandle() local
215 memset(&attribTpi, 0, sizeof(attribTpi)); in VAMappedHandle()
217 attribTpi.type = VAExternalMemoryKernelDRMBufffer; in VAMappedHandle()
218 attribTpi.width = stride; in VAMappedHandle()
219 attribTpi.height = height; in VAMappedHandle()
220 attribTpi.size = stride*height*3/2; in VAMappedHandle()
221 attribTpi.pixel_format = VA_FOURCC_NV12; in VAMappedHandle()
222 attribTpi.tiling = tiled; in VAMappedHandle()
223 attribTpi.luma_stride = stride; in VAMappedHandle()
224 attribTpi.chroma_u_stride = stride; in VAMappedHandle()
225 attribTpi.chroma_v_stride = stride; in VAMappedHandle()
226 attribTpi.luma_offset = 0; in VAMappedHandle()
227 attribTpi.chroma_u_offset = stride*height; in VAMappedHandle()
228 attribTpi.chroma_v_offset = stride*height+1; in VAMappedHandle()
230 attribTpi.count = 1; in VAMappedHandle()
231 attribTpi.buffers = (long unsigned int*) &khandle; in VAMappedHandle()
240 &attribTpi); in VAMappedHandle()