Home | History | Annotate | Download | only in ocl

Lines Matching defs:out_info

234     const VideoBufferInfo &out_info = output->get_video_info ();
261 cl_desc.width = XCAM_ALIGN_DOWN (out_info.width, 8) / 8; //CL_RGBA * CL_UNSIGNED_INT16 = 8
262 cl_desc.height = XCAM_ALIGN_DOWN (out_info.height, 2);
263 cl_desc.row_pitch = out_info.strides[NV12PlaneYIdx];
264 _output[NV12PlaneYIdx] = convert_to_climage (context, output, cl_desc, out_info.offsets[NV12PlaneYIdx]);
266 cl_desc.row_pitch = out_info.strides[NV12PlaneUVIdx];
267 _output[NV12PlaneUVIdx] = convert_to_climage (context, output, cl_desc, out_info.offsets[NV12PlaneUVIdx]);
271 cl_desc.width = XCAM_ALIGN_DOWN (out_info.width, 4) / 4; //CL_RGBA * CL_UNSIGNED_INT8 = 4
272 cl_desc.height = XCAM_ALIGN_DOWN (out_info.height, 2);
273 cl_desc.row_pitch = out_info.strides[NV12PlaneYIdx];
274 _output[NV12PlaneYIdx] = convert_to_climage (context, output, cl_desc, out_info.offsets[NV12PlaneYIdx]);
276 cl_desc.row_pitch = out_info.strides[NV12PlaneUVIdx];
277 _output[NV12PlaneUVIdx] = convert_to_climage (context, output, cl_desc, out_info.offsets[NV12PlaneUVIdx]);