Home
last modified time | relevance | path

Searched refs:crop_meta (Results 1 – 5 of 5) sorted by relevance

/third_party/gstreamer/gstplugins_bad/sys/va/
Dgstvapool.c226 GstVideoCropMeta *crop_meta; in gst_va_pool_alloc() local
237 crop_meta = gst_buffer_add_video_crop_meta (buf); in gst_va_pool_alloc()
238 crop_meta->x = vpool->crop_left; in gst_va_pool_alloc()
239 crop_meta->y = vpool->crop_top; in gst_va_pool_alloc()
240 crop_meta->width = GST_VIDEO_INFO_WIDTH (&vpool->caps_info); in gst_va_pool_alloc()
241 crop_meta->height = GST_VIDEO_INFO_HEIGHT (&vpool->caps_info); in gst_va_pool_alloc()
/third_party/gstreamer/gstplugins_bad/sys/d3d11/
Dgstd3d11window.cpp897 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()
[all …]
Dgstd3d11videosink.cpp1077 GstVideoCropMeta *crop_meta; in gst_d3d11_video_sink_get_fallback_buffer() local
1109 crop_meta = gst_buffer_get_video_crop_meta (inbuf); in gst_d3d11_video_sink_get_fallback_buffer()
1110 if (crop_meta) { in gst_d3d11_video_sink_get_fallback_buffer()
1113 new_crop_meta->x = crop_meta->x; in gst_d3d11_video_sink_get_fallback_buffer()
1114 new_crop_meta->y = crop_meta->y; in gst_d3d11_video_sink_get_fallback_buffer()
1115 new_crop_meta->width = crop_meta->width; in gst_d3d11_video_sink_get_fallback_buffer()
1116 new_crop_meta->height = crop_meta->height; in gst_d3d11_video_sink_get_fallback_buffer()
/third_party/gstreamer/gstplugins_good/gst/videocrop/
Dgstvideocrop.c539 GstVideoCropMeta *crop_meta; in gst_video_crop_transform_ip() local
560 crop_meta = gst_buffer_get_video_crop_meta (buf); in gst_video_crop_transform_ip()
561 if (!crop_meta) in gst_video_crop_transform_ip()
562 crop_meta = gst_buffer_add_video_crop_meta (buf); in gst_video_crop_transform_ip()
564 crop_meta->x += vcrop->crop_left; in gst_video_crop_transform_ip()
565 crop_meta->y += vcrop->crop_top; in gst_video_crop_transform_ip()
566 crop_meta->width = GST_VIDEO_INFO_WIDTH (&vcrop->out_info); in gst_video_crop_transform_ip()
567 crop_meta->height = GST_VIDEO_INFO_HEIGHT (&vcrop->out_info); in gst_video_crop_transform_ip()
/third_party/gstreamer/gstplugins_base/sys/xvimage/
Dxvimagesink.c957 GstVideoCropMeta *crop_meta; in gst_xv_image_sink_show_frame() local
1002 if ((crop_meta = gst_buffer_get_video_crop_meta (buf))) { in gst_xv_image_sink_show_frame()
1005 dmeta->x = crop_meta->x; in gst_xv_image_sink_show_frame()
1006 dmeta->y = crop_meta->y; in gst_xv_image_sink_show_frame()
1007 dmeta->width = crop_meta->width; in gst_xv_image_sink_show_frame()
1008 dmeta->height = crop_meta->height; in gst_xv_image_sink_show_frame()