/* * GStreamer * Copyright (C) 2015 Matthew Waters * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, * Boston, MA 02110-1301, USA. */ #ifndef _VK_SINK_H_ #define _VK_SINK_H_ #include #include #include #include G_BEGIN_DECLS struct _GstVulkanSink { GstVideoSink video_sink; GstVulkanInstance *instance; GstVulkanDevice *device; GstVulkanDisplay *display; GstVulkanWindow *window; GstVulkanSwapper *swapper; /* properties */ gboolean force_aspect_ratio; gint par_n; gint par_d; /* stream configuration */ GstVideoInfo v_info; /* the currently set window handle */ guintptr set_window_handle; gulong key_sig_id; gulong mouse_sig_id; }; struct _GstVulkanSinkClass { GstVideoSinkClass video_sink_class; gint device_index; }; gboolean gst_vulkan_sink_register (GstPlugin * plugin, GstVulkanDevice *device, guint rank); G_END_DECLS #endif