Lines Matching refs:crop_meta
897 GstVideoCropMeta *crop_meta; in gst_d3d111_window_present() local
916 crop_meta = gst_buffer_get_video_crop_meta (buffer); in gst_d3d111_window_present()
918 if (crop_meta) { in gst_d3d111_window_present()
924 if (desc.Width < crop_meta->x + crop_meta->width || in gst_d3d111_window_present()
925 desc.Height < crop_meta->y + crop_meta->height) { in gst_d3d111_window_present()
928 crop_meta = nullptr; in gst_d3d111_window_present()
932 if (crop_meta) { in gst_d3d111_window_present()
933 input_rect.left = crop_meta->x; in gst_d3d111_window_present()
934 input_rect.right = crop_meta->x + crop_meta->width; in gst_d3d111_window_present()
935 input_rect.top = crop_meta->y; in gst_d3d111_window_present()
936 input_rect.bottom = crop_meta->y + crop_meta->height; in gst_d3d111_window_present()