Lines Matching full:convert
44 @@ -2742,6 +2747,169 @@ gst_video_converter_get_config (GstVideoConverter * convert)
45 return convert->config;
165 +video_converter_try_rga (GstVideoConverter * convert,
189 + if (!get_rga_info (src, &src_info, convert->in_x, convert->in_y,
190 + convert->in_width, convert->in_height)) {
195 + if (!get_rga_info (dest, &dst_info, convert->out_x, convert->out_y,
196 + convert->out_width, convert->out_height)) {
213 * @convert: a #GstVideoConverter
214 @@ -2789,6 +2957,12 @@ gst_video_converter_frame (GstVideoConverter * convert,
215 convert->out_width == 0 || convert->out_height == 0))
219 + /* Accel convert with rockchip RGA */
220 + if (video_converter_try_rga (convert, src, dest))
224 convert->convert (convert, src, dest);
227 @@ -7218,6 +7392,12 @@ convert_scale_planes (GstVideoConverter * convert,
232 + /* Accel convert with rockchip RGA */
233 + if (video_converter_try_rga (convert, src, dest))
239 if (convert->fconvert[i])