Lines Matching refs:dinfo
299 GstVideoInfo *dinfo; in gst_video_frame_copy_plane() local
310 dinfo = &dest->info; in gst_video_frame_copy_plane()
312 g_return_val_if_fail (dinfo->finfo->format == sinfo->finfo->format, FALSE); in gst_video_frame_copy_plane()
314 finfo = dinfo->finfo; in gst_video_frame_copy_plane()
316 g_return_val_if_fail (dinfo->width <= sinfo->width in gst_video_frame_copy_plane()
317 && dinfo->height <= sinfo->height, FALSE); in gst_video_frame_copy_plane()
335 w = MIN (GST_VIDEO_INFO_PLANE_STRIDE (dinfo, plane), in gst_video_frame_copy_plane()
341 ds = GST_VIDEO_INFO_PLANE_STRIDE (dinfo, plane); in gst_video_frame_copy_plane()
411 GstVideoInfo *dinfo; in gst_video_frame_copy() local
417 dinfo = &dest->info; in gst_video_frame_copy()
419 g_return_val_if_fail (dinfo->finfo->format == sinfo->finfo->format, FALSE); in gst_video_frame_copy()
420 g_return_val_if_fail (dinfo->width <= sinfo->width in gst_video_frame_copy()
421 && dinfo->height <= sinfo->height, FALSE); in gst_video_frame_copy()
423 n_planes = dinfo->finfo->n_planes; in gst_video_frame_copy()