Lines Matching refs:src_info
226 gst_mpp_rga_do_convert (rga_info_t * src_info, rga_info_t * dst_info) in gst_mpp_rga_do_convert() argument
243 if (c_RkRgaBlit (src_info, dst_info, NULL) < 0) { in gst_mpp_rga_do_convert()
276 rga_info_t src_info = { 0, }; in gst_mpp_rga_convert() local
279 if (!gst_mpp_rga_info_from_video_info (&src_info, src_vinfo)) in gst_mpp_rga_convert()
293 src_info.fd = gst_dmabuf_memory_get_fd (mem); in gst_mpp_rga_convert()
297 if (src_info.fd <= 0) { in gst_mpp_rga_convert()
299 src_info.virAddr = mapinfo.data; in gst_mpp_rga_convert()
304 src_info.rotation = gst_mpp_rga_get_rotation (rotation); in gst_mpp_rga_convert()
305 if (src_info.rotation < 0) in gst_mpp_rga_convert()
308 ret = gst_mpp_rga_do_convert (&src_info, &dst_info); in gst_mpp_rga_convert()
318 rga_info_t src_info = { 0, }; in gst_mpp_rga_convert_from_mpp_frame() local
321 if (!gst_mpp_rga_info_from_mpp_frame (&src_info, mframe)) in gst_mpp_rga_convert_from_mpp_frame()
329 src_info.rotation = gst_mpp_rga_get_rotation (rotation); in gst_mpp_rga_convert_from_mpp_frame()
330 if (src_info.rotation < 0) in gst_mpp_rga_convert_from_mpp_frame()
333 return gst_mpp_rga_do_convert (&src_info, &dst_info); in gst_mpp_rga_convert_from_mpp_frame()