2015-10-24 06:29:05 +00:00
|
|
|
/*
|
|
|
|
* GStreamer
|
|
|
|
* Copyright (C) 2015 Matthew Waters <matthew@centricular.com>
|
|
|
|
*
|
|
|
|
* 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 <gst/gst.h>
|
|
|
|
#include <gst/video/gstvideosink.h>
|
|
|
|
#include <gst/video/video.h>
|
2019-04-08 11:35:22 +00:00
|
|
|
#include <gst/vulkan/vulkan.h>
|
2015-10-24 06:29:05 +00:00
|
|
|
|
|
|
|
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;
|
2019-03-27 06:56:28 +00:00
|
|
|
|
|
|
|
/* the currently set window handle */
|
|
|
|
guintptr set_window_handle;
|
2020-02-17 04:08:47 +00:00
|
|
|
|
|
|
|
gulong key_sig_id;
|
|
|
|
gulong mouse_sig_id;
|
2015-10-24 06:29:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstVulkanSinkClass
|
|
|
|
{
|
|
|
|
GstVideoSinkClass video_sink_class;
|
2024-06-11 15:25:51 +00:00
|
|
|
gint device_index;
|
2015-10-24 06:29:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2024-06-11 15:25:51 +00:00
|
|
|
gboolean
|
|
|
|
gst_vulkan_sink_register (GstPlugin * plugin, GstVulkanDevice *device, guint rank);
|
2022-05-17 03:22:33 +00:00
|
|
|
|
2015-10-24 06:29:05 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif
|