2016-01-20 11:00:51 +00:00
|
|
|
/* GStreamer
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016 Igalia
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
|
|
|
|
* Javier Martin <javiermartin@by.com.es>
|
|
|
|
*
|
|
|
|
* 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 __GST_KMS_SINK_H__
|
|
|
|
#define __GST_KMS_SINK_H__
|
|
|
|
|
|
|
|
#include <gst/video/gstvideosink.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_TYPE_KMS_SINK \
|
|
|
|
(gst_kms_sink_get_type())
|
|
|
|
#define GST_KMS_SINK(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj), GST_TYPE_KMS_SINK, GstKMSSink))
|
|
|
|
#define GST_KMS_SINK_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass), GST_TYPE_KMS_SINK, GstKMSSinkClass))
|
|
|
|
#define GST_IS_KMS_SINK(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj), GST_TYPE_KMS_SINK))
|
|
|
|
#define GST_IS_KMS_SINK_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass), GST_TYPE_KMS_SINK))
|
|
|
|
|
|
|
|
typedef struct _GstKMSSink GstKMSSink;
|
|
|
|
typedef struct _GstKMSSinkClass GstKMSSinkClass;
|
|
|
|
|
|
|
|
struct _GstKMSSink {
|
|
|
|
GstVideoSink videosink;
|
|
|
|
|
|
|
|
/*< private >*/
|
|
|
|
gint fd;
|
|
|
|
gint conn_id;
|
|
|
|
gint crtc_id;
|
|
|
|
gint plane_id;
|
2016-04-14 10:46:58 +00:00
|
|
|
guint pipe;
|
2016-01-20 11:00:51 +00:00
|
|
|
|
2016-02-20 22:13:54 +00:00
|
|
|
/* crtc data */
|
2016-01-20 11:00:51 +00:00
|
|
|
guint16 hdisplay, vdisplay;
|
2016-02-20 22:13:54 +00:00
|
|
|
guint32 buffer_id;
|
2016-01-20 11:00:51 +00:00
|
|
|
|
2016-02-10 19:43:47 +00:00
|
|
|
/* capabilities */
|
|
|
|
gboolean has_prime_import;
|
2017-09-11 19:00:53 +00:00
|
|
|
gboolean has_prime_export;
|
2016-02-20 22:13:54 +00:00
|
|
|
gboolean has_async_page_flip;
|
2016-10-19 12:56:06 +00:00
|
|
|
gboolean can_scale;
|
2016-02-10 19:43:47 +00:00
|
|
|
|
2016-10-14 14:03:08 +00:00
|
|
|
gboolean modesetting_enabled;
|
2018-08-25 17:17:34 +00:00
|
|
|
gboolean restore_crtc;
|
2018-08-23 12:29:37 +00:00
|
|
|
GstStructure *connector_props;
|
2018-08-27 19:08:08 +00:00
|
|
|
GstStructure *plane_props;
|
2016-10-14 14:03:08 +00:00
|
|
|
|
2016-01-20 11:00:51 +00:00
|
|
|
GstVideoInfo vinfo;
|
|
|
|
GstCaps *allowed_caps;
|
|
|
|
GstBufferPool *pool;
|
|
|
|
GstAllocator *allocator;
|
2019-11-08 22:57:58 +00:00
|
|
|
GstVideoInfo last_vinfo;
|
|
|
|
guint last_width;
|
|
|
|
guint last_height;
|
2016-03-04 15:53:58 +00:00
|
|
|
GstBuffer *last_buffer;
|
2016-10-20 10:37:48 +00:00
|
|
|
GstMemory *tmp_kmsmem;
|
2016-01-20 11:00:51 +00:00
|
|
|
|
|
|
|
gchar *devname;
|
2017-08-09 18:55:44 +00:00
|
|
|
gchar *bus_id;
|
2016-01-20 11:00:51 +00:00
|
|
|
|
|
|
|
guint32 mm_width, mm_height;
|
2018-08-25 17:17:34 +00:00
|
|
|
gpointer saved_crtc;
|
2016-02-20 22:13:54 +00:00
|
|
|
GstPoll *poll;
|
|
|
|
GstPollFD pollfd;
|
2017-09-14 10:12:18 +00:00
|
|
|
|
|
|
|
/* render video rectangle */
|
|
|
|
GstVideoRectangle render_rect;
|
|
|
|
|
|
|
|
/* reconfigure info if driver doesn't scale */
|
|
|
|
GstVideoRectangle pending_rect;
|
|
|
|
gboolean reconfigure;
|
2016-01-20 11:00:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstKMSSinkClass {
|
|
|
|
GstVideoSinkClass parent_class;
|
|
|
|
};
|
|
|
|
|
|
|
|
GType gst_kms_sink_get_type (void) G_GNUC_CONST;
|
2021-03-26 10:00:50 +00:00
|
|
|
GST_ELEMENT_REGISTER_DECLARE (kmssink);
|
2016-01-20 11:00:51 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GST_KMS_SINK_H__ */
|