2010-03-05 17:11:52 +00:00
|
|
|
/*
|
|
|
|
* gstvaapisink.h - VA-API video sink
|
|
|
|
*
|
2012-01-16 09:41:10 +00:00
|
|
|
* Copyright (C) 2010-2011 Splitted-Desktop Systems
|
2013-11-22 04:57:18 +00:00
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@splitted-desktop.com>
|
2014-01-22 17:54:14 +00:00
|
|
|
* Copyright (C) 2011-2014 Intel Corporation
|
2013-11-22 04:57:18 +00:00
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
|
2010-03-05 17:11:52 +00:00
|
|
|
*
|
2011-10-18 07:06:52 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2.1
|
|
|
|
* of the License, or (at your option) any later version.
|
2010-03-05 17:11:52 +00:00
|
|
|
*
|
2011-10-18 07:06:52 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2010-03-05 17:11:52 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2011-10-18 07:06:52 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2010-03-05 17:11:52 +00:00
|
|
|
*
|
2011-10-18 07:06:52 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free
|
|
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301 USA
|
|
|
|
*/
|
2010-03-05 17:11:52 +00:00
|
|
|
|
|
|
|
#ifndef GST_VAAPISINK_H
|
|
|
|
#define GST_VAAPISINK_H
|
|
|
|
|
2013-12-13 09:24:26 +00:00
|
|
|
#include "gstvaapipluginbase.h"
|
2010-03-15 17:09:12 +00:00
|
|
|
#include <gst/vaapi/gstvaapiwindow.h>
|
2012-07-23 15:49:08 +00:00
|
|
|
#include "gstvaapipluginutil.h"
|
2010-03-05 17:11:52 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_TYPE_VAAPISINK \
|
|
|
|
(gst_vaapisink_get_type())
|
|
|
|
|
|
|
|
#define GST_VAAPISINK(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj), \
|
|
|
|
GST_TYPE_VAAPISINK, \
|
|
|
|
GstVaapiSink))
|
|
|
|
|
|
|
|
#define GST_VAAPISINK_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass), \
|
|
|
|
GST_TYPE_VAAPISINK, \
|
|
|
|
GstVaapiSinkClass))
|
|
|
|
|
|
|
|
#define GST_IS_VAAPISINK(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj), GST_TYPE_VAAPISINK))
|
|
|
|
|
|
|
|
#define GST_IS_VAAPISINK_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass), GST_TYPE_VAAPISINK))
|
|
|
|
|
|
|
|
#define GST_VAAPISINK_GET_CLASS(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_CLASS((obj), \
|
|
|
|
GST_TYPE_VAAPISINK, \
|
2010-03-12 23:53:48 +00:00
|
|
|
GstVaapiSinkClass))
|
2010-03-05 17:11:52 +00:00
|
|
|
|
|
|
|
typedef struct _GstVaapiSink GstVaapiSink;
|
|
|
|
typedef struct _GstVaapiSinkClass GstVaapiSinkClass;
|
2014-07-30 15:27:50 +00:00
|
|
|
typedef struct _GstVaapiSinkBackend GstVaapiSinkBackend;
|
|
|
|
|
|
|
|
typedef gboolean (*GstVaapiSinkCreateWindowFunc)(GstVaapiSink *sink,
|
|
|
|
guint width, guint height);
|
|
|
|
typedef gboolean (*GstVaapiSinkCreateWindowFromHandleFunc)(GstVaapiSink *sink,
|
|
|
|
guintptr window);
|
|
|
|
typedef gboolean (*GstVaapiSinkRenderSurfaceFunc)(GstVaapiSink *sink,
|
|
|
|
GstVaapiSurface *surface, const GstVaapiRectangle *surface_rect, guint flags);
|
|
|
|
typedef gboolean (*GstVaapiSinkHandleEventsFunc)(GstVaapiSink *sink);
|
|
|
|
typedef gboolean (*GstVaapiSinkPreStartEventThreadFunc)(GstVaapiSink *sink);
|
|
|
|
typedef gboolean (*GstVaapiSinkPreStopEventThreadFunc)(GstVaapiSink *sink);
|
|
|
|
|
|
|
|
struct _GstVaapiSinkBackend {
|
|
|
|
GstVaapiSinkCreateWindowFunc create_window;
|
|
|
|
GstVaapiSinkCreateWindowFromHandleFunc create_window_from_handle;
|
|
|
|
GstVaapiSinkRenderSurfaceFunc render_surface;
|
|
|
|
|
|
|
|
/* Event threads handling */
|
|
|
|
gboolean event_thread_needed;
|
|
|
|
GstVaapiSinkHandleEventsFunc handle_events;
|
|
|
|
GstVaapiSinkPreStartEventThreadFunc pre_start_event_thread;
|
|
|
|
GstVaapiSinkPreStopEventThreadFunc pre_stop_event_thread;
|
|
|
|
};
|
2010-03-29 14:21:51 +00:00
|
|
|
|
2010-03-05 17:11:52 +00:00
|
|
|
struct _GstVaapiSink {
|
|
|
|
/*< private >*/
|
2013-12-13 09:24:26 +00:00
|
|
|
GstVaapiPluginBase parent_instance;
|
2010-03-05 17:11:52 +00:00
|
|
|
|
2014-07-30 15:27:50 +00:00
|
|
|
const GstVaapiSinkBackend *backend;
|
|
|
|
|
2012-02-07 14:21:05 +00:00
|
|
|
GstCaps *caps;
|
2010-03-15 17:09:12 +00:00
|
|
|
GstVaapiWindow *window;
|
2010-03-29 16:17:38 +00:00
|
|
|
guint window_width;
|
|
|
|
guint window_height;
|
2012-08-24 13:30:33 +00:00
|
|
|
GstBuffer *video_buffer;
|
2010-03-29 14:13:26 +00:00
|
|
|
guint video_width;
|
|
|
|
guint video_height;
|
2010-05-12 12:58:53 +00:00
|
|
|
gint video_par_n;
|
|
|
|
gint video_par_d;
|
2013-08-29 16:34:57 +00:00
|
|
|
GstVideoInfo video_info;
|
2010-03-29 16:17:38 +00:00
|
|
|
GstVaapiRectangle display_rect;
|
2012-08-28 06:45:22 +00:00
|
|
|
GstVaapiRotation rotation;
|
|
|
|
GstVaapiRotation rotation_req;
|
2014-01-15 11:09:14 +00:00
|
|
|
guint color_standard;
|
2014-07-28 08:25:26 +00:00
|
|
|
gint32 view_id;
|
2013-11-05 13:01:11 +00:00
|
|
|
GThread *event_thread;
|
|
|
|
volatile gboolean event_thread_cancel;
|
|
|
|
guint handle_events : 1;
|
2010-05-18 11:22:54 +00:00
|
|
|
guint foreign_window : 1;
|
2010-03-22 12:03:26 +00:00
|
|
|
guint fullscreen : 1;
|
2012-08-27 15:34:27 +00:00
|
|
|
guint use_overlay : 1;
|
2012-08-28 06:45:22 +00:00
|
|
|
guint use_rotation : 1;
|
2013-08-16 15:58:58 +00:00
|
|
|
guint keep_aspect : 1;
|
2010-03-05 17:11:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstVaapiSinkClass {
|
|
|
|
/*< private >*/
|
2013-12-13 09:24:26 +00:00
|
|
|
GstVaapiPluginBaseClass parent_class;
|
2010-03-05 17:11:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
GType
|
2012-06-28 23:45:47 +00:00
|
|
|
gst_vaapisink_get_type(void) G_GNUC_CONST;
|
2010-03-05 17:11:52 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* GST_VAAPISINK_H */
|