2010-03-05 17:11:52 +00:00
|
|
|
/*
|
|
|
|
* gstvaapisink.c - VA-API video sink
|
|
|
|
*
|
2012-01-16 09:41:10 +00:00
|
|
|
* Copyright (C) 2010-2011 Splitted-Desktop Systems
|
2013-01-29 13:14:45 +00:00
|
|
|
* Copyright (C) 2011-2013 Intel Corporation
|
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
|
|
|
*/
|
|
|
|
|
2010-03-23 15:22:47 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gstvaapisink
|
|
|
|
* @short_description: A VA-API based videosink
|
|
|
|
*
|
|
|
|
* vaapisink renders video frames to a drawable (X #Window) on a local
|
|
|
|
* display using the Video Acceleration (VA) API. The element will
|
|
|
|
* create its own internal window and render into it.
|
|
|
|
*/
|
|
|
|
|
2012-09-12 11:41:47 +00:00
|
|
|
#include "gst/vaapi/sysdeps.h"
|
2010-03-12 23:53:48 +00:00
|
|
|
#include <gst/gst.h>
|
2011-11-04 20:50:15 +00:00
|
|
|
#include <gst/video/video.h>
|
2013-05-21 16:42:39 +00:00
|
|
|
|
2012-08-28 06:45:22 +00:00
|
|
|
#include <gst/vaapi/gstvaapivalue.h>
|
2012-08-01 13:46:35 +00:00
|
|
|
#if USE_DRM
|
|
|
|
# include <gst/vaapi/gstvaapidisplay_drm.h>
|
|
|
|
#endif
|
2012-07-24 13:07:48 +00:00
|
|
|
#if USE_X11
|
|
|
|
# include <gst/vaapi/gstvaapidisplay_x11.h>
|
|
|
|
# include <gst/vaapi/gstvaapiwindow_x11.h>
|
|
|
|
#endif
|
2012-07-23 15:49:08 +00:00
|
|
|
#if USE_GLX
|
|
|
|
# include <gst/vaapi/gstvaapidisplay_glx.h>
|
|
|
|
# include <gst/vaapi/gstvaapiwindow_glx.h>
|
2010-03-29 14:13:26 +00:00
|
|
|
#endif
|
2012-07-24 07:45:25 +00:00
|
|
|
#if USE_WAYLAND
|
|
|
|
# include <gst/vaapi/gstvaapidisplay_wayland.h>
|
|
|
|
# include <gst/vaapi/gstvaapiwindow_wayland.h>
|
|
|
|
#endif
|
2010-03-05 17:11:52 +00:00
|
|
|
|
2010-05-12 11:43:50 +00:00
|
|
|
/* Supported interfaces */
|
2012-09-03 11:00:25 +00:00
|
|
|
#if GST_CHECK_VERSION(1,0,0)
|
|
|
|
# include <gst/video/videooverlay.h>
|
|
|
|
#else
|
|
|
|
# include <gst/interfaces/xoverlay.h>
|
|
|
|
|
|
|
|
# define GST_TYPE_VIDEO_OVERLAY GST_TYPE_X_OVERLAY
|
|
|
|
# define GST_VIDEO_OVERLAY GST_X_OVERLAY
|
|
|
|
# define GstVideoOverlay GstXOverlay
|
|
|
|
# define GstVideoOverlayInterface GstXOverlayClass
|
|
|
|
|
|
|
|
# define gst_video_overlay_prepare_window_handle(sink) \
|
|
|
|
gst_x_overlay_prepare_xwindow_id(sink)
|
|
|
|
# define gst_video_overlay_got_window_handle(sink, window_handle) \
|
|
|
|
gst_x_overlay_got_window_handle(sink, window_handle)
|
|
|
|
#endif
|
2010-05-12 11:43:50 +00:00
|
|
|
|
2011-11-04 20:50:15 +00:00
|
|
|
#include "gstvaapisink.h"
|
|
|
|
#include "gstvaapipluginutil.h"
|
2013-07-12 16:58:57 +00:00
|
|
|
#include "gstvaapivideocontext.h"
|
2013-03-26 09:31:10 +00:00
|
|
|
#include "gstvaapivideometa.h"
|
2013-03-20 13:40:57 +00:00
|
|
|
#if GST_CHECK_VERSION(1,0,0)
|
2012-11-08 14:41:22 +00:00
|
|
|
#include "gstvaapivideobufferpool.h"
|
|
|
|
#include "gstvaapivideomemory.h"
|
2013-03-20 13:40:57 +00:00
|
|
|
#endif
|
2011-11-04 20:50:15 +00:00
|
|
|
|
2010-03-12 23:53:48 +00:00
|
|
|
#define GST_PLUGIN_NAME "vaapisink"
|
|
|
|
#define GST_PLUGIN_DESC "A VA-API based videosink"
|
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_STATIC(gst_debug_vaapisink);
|
|
|
|
#define GST_CAT_DEFAULT gst_debug_vaapisink
|
|
|
|
|
2010-03-05 17:11:52 +00:00
|
|
|
/* Default template */
|
2012-11-20 13:28:55 +00:00
|
|
|
static const char gst_vaapisink_sink_caps_str[] =
|
2013-07-04 08:03:52 +00:00
|
|
|
#if GST_CHECK_VERSION(1,1,0)
|
|
|
|
GST_VIDEO_CAPS_MAKE_WITH_FEATURES(
|
2013-07-15 11:41:00 +00:00
|
|
|
GST_CAPS_FEATURE_MEMORY_VAAPI_SURFACE, GST_VIDEO_FORMATS_ALL) ";"
|
|
|
|
GST_VIDEO_CAPS_MAKE_WITH_FEATURES(
|
|
|
|
GST_CAPS_FEATURE_META_GST_VIDEO_GL_TEXTURE_UPLOAD_META,
|
|
|
|
GST_VIDEO_FORMATS_ALL);
|
2013-07-04 08:03:52 +00:00
|
|
|
#else
|
2013-06-27 09:25:44 +00:00
|
|
|
#if GST_CHECK_VERSION(1,0,0)
|
|
|
|
GST_VIDEO_CAPS_MAKE(GST_VIDEO_FORMATS_ALL) "; "
|
|
|
|
#else
|
2012-11-20 13:28:55 +00:00
|
|
|
"video/x-raw-yuv, "
|
|
|
|
"width = (int) [ 1, MAX ], "
|
|
|
|
"height = (int) [ 1, MAX ]; "
|
2012-09-03 11:00:25 +00:00
|
|
|
#endif
|
2012-11-20 13:28:55 +00:00
|
|
|
GST_VAAPI_SURFACE_CAPS;
|
2013-07-04 08:03:52 +00:00
|
|
|
#endif
|
2012-11-20 13:28:55 +00:00
|
|
|
|
2010-03-05 17:11:52 +00:00
|
|
|
static GstStaticPadTemplate gst_vaapisink_sink_factory =
|
|
|
|
GST_STATIC_PAD_TEMPLATE(
|
|
|
|
"sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
2012-11-20 13:28:55 +00:00
|
|
|
GST_STATIC_CAPS(gst_vaapisink_sink_caps_str));
|
2010-03-05 17:11:52 +00:00
|
|
|
|
2010-05-12 11:43:50 +00:00
|
|
|
/* GstImplementsInterface interface */
|
2012-09-03 11:00:25 +00:00
|
|
|
#if !GST_CHECK_VERSION(1,0,0)
|
2010-05-12 11:43:50 +00:00
|
|
|
static gboolean
|
|
|
|
gst_vaapisink_implements_interface_supported(
|
|
|
|
GstImplementsInterface *iface,
|
|
|
|
GType type
|
|
|
|
)
|
|
|
|
{
|
2011-11-04 20:50:15 +00:00
|
|
|
return (type == GST_TYPE_VIDEO_CONTEXT ||
|
2012-09-03 11:00:25 +00:00
|
|
|
type == GST_TYPE_VIDEO_OVERLAY);
|
2010-05-12 11:43:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapisink_implements_iface_init(GstImplementsInterfaceClass *iface)
|
|
|
|
{
|
|
|
|
iface->supported = gst_vaapisink_implements_interface_supported;
|
|
|
|
}
|
2012-09-03 11:00:25 +00:00
|
|
|
#endif
|
2010-05-12 11:43:50 +00:00
|
|
|
|
2012-08-29 11:18:05 +00:00
|
|
|
/* GstVideoContext interface */
|
2013-05-21 16:42:39 +00:00
|
|
|
#if !GST_CHECK_VERSION(1,1,0)
|
2011-11-04 20:50:15 +00:00
|
|
|
static void
|
|
|
|
gst_vaapisink_set_video_context(GstVideoContext *context, const gchar *type,
|
|
|
|
const GValue *value)
|
2010-03-12 23:53:48 +00:00
|
|
|
{
|
2011-11-04 20:50:15 +00:00
|
|
|
GstVaapiSink *sink = GST_VAAPISINK (context);
|
|
|
|
gst_vaapi_set_display (type, value, &sink->display);
|
2010-03-12 23:53:48 +00:00
|
|
|
}
|
|
|
|
|
2010-05-12 09:34:37 +00:00
|
|
|
static void
|
2011-11-04 20:50:15 +00:00
|
|
|
gst_vaapisink_video_context_iface_init(GstVideoContextInterface *iface)
|
2010-03-12 23:53:48 +00:00
|
|
|
{
|
2011-11-04 20:50:15 +00:00
|
|
|
iface->set_context = gst_vaapisink_set_video_context;
|
2010-03-12 23:53:48 +00:00
|
|
|
}
|
2013-05-21 16:42:39 +00:00
|
|
|
#endif
|
2010-03-12 23:53:48 +00:00
|
|
|
|
2013-03-20 17:04:39 +00:00
|
|
|
static void
|
2012-09-03 11:00:25 +00:00
|
|
|
gst_vaapisink_video_overlay_iface_init(GstVideoOverlayInterface *iface);
|
2013-03-20 17:04:39 +00:00
|
|
|
|
|
|
|
G_DEFINE_TYPE_WITH_CODE(
|
|
|
|
GstVaapiSink,
|
|
|
|
gst_vaapisink,
|
|
|
|
GST_TYPE_VIDEO_SINK,
|
2012-09-03 11:00:25 +00:00
|
|
|
#if !GST_CHECK_VERSION(1,0,0)
|
2013-03-20 17:04:39 +00:00
|
|
|
G_IMPLEMENT_INTERFACE(GST_TYPE_IMPLEMENTS_INTERFACE,
|
|
|
|
gst_vaapisink_implements_iface_init);
|
2012-09-03 11:00:25 +00:00
|
|
|
#endif
|
2013-05-21 16:42:39 +00:00
|
|
|
#if !GST_CHECK_VERSION(1,1,0)
|
2013-03-20 17:04:39 +00:00
|
|
|
G_IMPLEMENT_INTERFACE(GST_TYPE_VIDEO_CONTEXT,
|
|
|
|
gst_vaapisink_video_context_iface_init);
|
2013-05-21 16:42:39 +00:00
|
|
|
#endif
|
2012-09-03 11:00:25 +00:00
|
|
|
G_IMPLEMENT_INTERFACE(GST_TYPE_VIDEO_OVERLAY,
|
|
|
|
gst_vaapisink_video_overlay_iface_init))
|
2013-03-20 17:04:39 +00:00
|
|
|
|
|
|
|
enum {
|
|
|
|
PROP_0,
|
|
|
|
|
|
|
|
PROP_DISPLAY_TYPE,
|
|
|
|
PROP_FULLSCREEN,
|
|
|
|
PROP_SYNCHRONOUS,
|
2013-06-27 11:53:46 +00:00
|
|
|
PROP_USE_GLX,
|
2013-03-20 17:04:39 +00:00
|
|
|
PROP_USE_REFLECTION,
|
|
|
|
PROP_ROTATION,
|
2013-08-16 15:58:58 +00:00
|
|
|
PROP_FORCE_ASPECT_RATIO,
|
2013-03-20 17:04:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define DEFAULT_DISPLAY_TYPE GST_VAAPI_DISPLAY_TYPE_ANY
|
|
|
|
#define DEFAULT_ROTATION GST_VAAPI_ROTATION_0
|
|
|
|
|
2012-09-03 11:00:25 +00:00
|
|
|
/* GstVideoOverlay interface */
|
2010-05-12 11:43:50 +00:00
|
|
|
|
2012-07-24 13:07:48 +00:00
|
|
|
#if USE_X11
|
2010-05-12 19:35:45 +00:00
|
|
|
static gboolean
|
2011-07-28 08:14:49 +00:00
|
|
|
gst_vaapisink_ensure_window_xid(GstVaapiSink *sink, guintptr window_id);
|
2012-07-24 13:07:48 +00:00
|
|
|
#endif
|
2010-05-12 19:35:45 +00:00
|
|
|
|
2010-05-12 11:43:50 +00:00
|
|
|
static GstFlowReturn
|
|
|
|
gst_vaapisink_show_frame(GstBaseSink *base_sink, GstBuffer *buffer);
|
|
|
|
|
2012-07-20 09:16:27 +00:00
|
|
|
static void
|
2012-09-03 11:00:25 +00:00
|
|
|
gst_vaapisink_video_overlay_set_window_handle(GstVideoOverlay *overlay, guintptr window)
|
2010-05-12 11:43:50 +00:00
|
|
|
{
|
|
|
|
GstVaapiSink * const sink = GST_VAAPISINK(overlay);
|
|
|
|
|
2010-05-17 08:28:28 +00:00
|
|
|
/* Disable GLX rendering when vaapisink is using a foreign X
|
|
|
|
window. It's pretty much useless */
|
2012-07-23 15:49:08 +00:00
|
|
|
if (sink->display_type == GST_VAAPI_DISPLAY_TYPE_GLX)
|
|
|
|
sink->display_type = GST_VAAPI_DISPLAY_TYPE_X11;
|
2010-05-17 08:28:28 +00:00
|
|
|
|
2010-05-18 11:22:54 +00:00
|
|
|
sink->foreign_window = TRUE;
|
2012-07-24 13:07:48 +00:00
|
|
|
|
|
|
|
switch (sink->display_type) {
|
|
|
|
#if USE_X11
|
|
|
|
case GST_VAAPI_DISPLAY_TYPE_X11:
|
|
|
|
gst_vaapisink_ensure_window_xid(sink, window);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2011-12-07 18:04:09 +00:00
|
|
|
}
|
|
|
|
|
2012-01-09 09:37:30 +00:00
|
|
|
static void
|
2012-09-03 11:00:25 +00:00
|
|
|
gst_vaapisink_video_overlay_set_render_rectangle(
|
|
|
|
GstVideoOverlay *overlay,
|
2012-01-09 09:37:30 +00:00
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height
|
|
|
|
)
|
|
|
|
{
|
|
|
|
GstVaapiSink * const sink = GST_VAAPISINK(overlay);
|
|
|
|
GstVaapiRectangle * const display_rect = &sink->display_rect;
|
|
|
|
|
|
|
|
display_rect->x = x;
|
|
|
|
display_rect->y = y;
|
|
|
|
display_rect->width = width;
|
|
|
|
display_rect->height = height;
|
|
|
|
|
|
|
|
GST_DEBUG("render rect (%d,%d):%ux%u",
|
|
|
|
display_rect->x, display_rect->y,
|
|
|
|
display_rect->width, display_rect->height);
|
|
|
|
}
|
|
|
|
|
2010-05-12 11:43:50 +00:00
|
|
|
static void
|
2012-09-03 11:00:25 +00:00
|
|
|
gst_vaapisink_video_overlay_expose(GstVideoOverlay *overlay)
|
2010-05-12 11:43:50 +00:00
|
|
|
{
|
2013-04-12 15:12:43 +00:00
|
|
|
GstVaapiSink * const sink = GST_VAAPISINK(overlay);
|
2010-05-12 11:43:50 +00:00
|
|
|
GstBaseSink * const base_sink = GST_BASE_SINK(overlay);
|
|
|
|
GstBuffer *buffer;
|
|
|
|
|
2013-04-12 15:12:43 +00:00
|
|
|
if (sink->use_overlay)
|
|
|
|
buffer = sink->video_buffer ? gst_buffer_ref(sink->video_buffer) : NULL;
|
|
|
|
else {
|
2012-09-03 11:00:25 +00:00
|
|
|
#if GST_CHECK_VERSION(1,0,0)
|
2013-04-12 15:12:43 +00:00
|
|
|
GstSample * const sample = gst_base_sink_get_last_sample(base_sink);
|
|
|
|
if (!sample)
|
|
|
|
return;
|
|
|
|
buffer = gst_buffer_ref(gst_sample_get_buffer(sample));
|
|
|
|
gst_sample_unref(sample);
|
2012-09-03 11:00:25 +00:00
|
|
|
#else
|
2013-04-12 15:12:43 +00:00
|
|
|
buffer = gst_base_sink_get_last_buffer(base_sink);
|
2012-09-03 11:00:25 +00:00
|
|
|
#endif
|
2013-04-12 15:12:43 +00:00
|
|
|
}
|
2010-05-12 11:43:50 +00:00
|
|
|
if (buffer) {
|
|
|
|
gst_vaapisink_show_frame(base_sink, buffer);
|
|
|
|
gst_buffer_unref(buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-09-03 11:00:25 +00:00
|
|
|
gst_vaapisink_video_overlay_iface_init(GstVideoOverlayInterface *iface)
|
2010-05-12 11:43:50 +00:00
|
|
|
{
|
2012-09-03 11:00:25 +00:00
|
|
|
iface->set_window_handle = gst_vaapisink_video_overlay_set_window_handle;
|
|
|
|
iface->set_render_rectangle = gst_vaapisink_video_overlay_set_render_rectangle;
|
|
|
|
iface->expose = gst_vaapisink_video_overlay_expose;
|
2010-05-12 11:43:50 +00:00
|
|
|
}
|
|
|
|
|
2010-03-12 23:53:48 +00:00
|
|
|
static void
|
|
|
|
gst_vaapisink_destroy(GstVaapiSink *sink)
|
|
|
|
{
|
2012-08-24 13:30:33 +00:00
|
|
|
gst_buffer_replace(&sink->video_buffer, NULL);
|
2013-06-03 23:14:22 +00:00
|
|
|
#if USE_GLX
|
2013-05-06 12:43:38 +00:00
|
|
|
gst_vaapi_texture_replace(&sink->texture, NULL);
|
2013-06-03 23:14:22 +00:00
|
|
|
#endif
|
2013-05-06 12:43:38 +00:00
|
|
|
gst_vaapi_display_replace(&sink->display, NULL);
|
2012-11-20 13:28:55 +00:00
|
|
|
g_clear_object(&sink->uploader);
|
2012-02-07 14:21:05 +00:00
|
|
|
|
|
|
|
gst_caps_replace(&sink->caps, NULL);
|
2010-03-12 23:53:48 +00:00
|
|
|
}
|
|
|
|
|
2012-07-24 13:07:48 +00:00
|
|
|
#if USE_X11
|
2010-05-17 08:55:51 +00:00
|
|
|
/* Checks whether a ConfigureNotify event is in the queue */
|
|
|
|
typedef struct _ConfigureNotifyEventPendingArgs ConfigureNotifyEventPendingArgs;
|
|
|
|
struct _ConfigureNotifyEventPendingArgs {
|
|
|
|
Window window;
|
|
|
|
guint width;
|
|
|
|
guint height;
|
|
|
|
gboolean match;
|
|
|
|
};
|
|
|
|
|
|
|
|
static Bool
|
|
|
|
configure_notify_event_pending_cb(Display *dpy, XEvent *xev, XPointer arg)
|
|
|
|
{
|
|
|
|
ConfigureNotifyEventPendingArgs * const args =
|
|
|
|
(ConfigureNotifyEventPendingArgs *)arg;
|
|
|
|
|
|
|
|
if (xev->type == ConfigureNotify &&
|
|
|
|
xev->xconfigure.window == args->window &&
|
|
|
|
xev->xconfigure.width == args->width &&
|
|
|
|
xev->xconfigure.height == args->height)
|
|
|
|
args->match = TRUE;
|
|
|
|
|
|
|
|
/* XXX: this is a hack to traverse the whole queue because we
|
|
|
|
can't use XPeekIfEvent() since it could block */
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
configure_notify_event_pending(
|
|
|
|
GstVaapiSink *sink,
|
|
|
|
Window window,
|
|
|
|
guint width,
|
|
|
|
guint height
|
|
|
|
)
|
|
|
|
{
|
|
|
|
ConfigureNotifyEventPendingArgs args;
|
|
|
|
XEvent xev;
|
|
|
|
|
|
|
|
args.window = window;
|
|
|
|
args.width = width;
|
|
|
|
args.height = height;
|
|
|
|
args.match = FALSE;
|
|
|
|
|
|
|
|
/* XXX: don't use XPeekIfEvent() because it might block */
|
|
|
|
XCheckIfEvent(
|
|
|
|
gst_vaapi_display_x11_get_display(GST_VAAPI_DISPLAY_X11(sink->display)),
|
|
|
|
&xev,
|
|
|
|
configure_notify_event_pending_cb, (XPointer)&args
|
|
|
|
);
|
|
|
|
return args.match;
|
|
|
|
}
|
2012-07-24 13:07:48 +00:00
|
|
|
#endif
|
2010-05-17 08:55:51 +00:00
|
|
|
|
2012-07-25 08:02:29 +00:00
|
|
|
static const gchar *
|
|
|
|
get_display_type_name(GstVaapiDisplayType display_type)
|
|
|
|
{
|
|
|
|
gpointer const klass = g_type_class_peek(GST_VAAPI_TYPE_DISPLAY_TYPE);
|
|
|
|
GEnumValue * const e = g_enum_get_value(klass, display_type);
|
|
|
|
|
|
|
|
if (e)
|
|
|
|
return e->value_name;
|
|
|
|
return "<unknown-type>";
|
|
|
|
}
|
|
|
|
|
2012-07-23 15:49:08 +00:00
|
|
|
static inline gboolean
|
|
|
|
gst_vaapisink_ensure_display(GstVaapiSink *sink)
|
|
|
|
{
|
2012-07-25 08:02:29 +00:00
|
|
|
GstVaapiDisplayType display_type;
|
2012-08-27 15:34:27 +00:00
|
|
|
GstVaapiRenderMode render_mode;
|
2013-05-27 12:01:48 +00:00
|
|
|
const gboolean had_display = sink->display != NULL;
|
2012-07-25 08:02:29 +00:00
|
|
|
|
|
|
|
if (!gst_vaapi_ensure_display(sink, sink->display_type, &sink->display))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
display_type = gst_vaapi_display_get_display_type(sink->display);
|
2013-05-27 12:01:48 +00:00
|
|
|
if (display_type != sink->display_type || (!had_display && sink->display)) {
|
2012-07-25 08:02:29 +00:00
|
|
|
GST_INFO("created %s %p", get_display_type_name(display_type),
|
|
|
|
sink->display);
|
|
|
|
sink->display_type = display_type;
|
2012-08-27 15:34:27 +00:00
|
|
|
|
|
|
|
sink->use_overlay =
|
|
|
|
gst_vaapi_display_get_render_mode(sink->display, &render_mode) &&
|
|
|
|
render_mode == GST_VAAPI_RENDER_MODE_OVERLAY;
|
|
|
|
GST_DEBUG("use %s rendering mode", sink->use_overlay ? "overlay" : "texture");
|
2012-08-28 06:45:22 +00:00
|
|
|
|
|
|
|
sink->use_rotation = gst_vaapi_display_has_property(
|
|
|
|
sink->display, GST_VAAPI_DISPLAY_PROP_ROTATION);
|
2012-07-25 08:02:29 +00:00
|
|
|
}
|
|
|
|
return TRUE;
|
2012-07-23 15:49:08 +00:00
|
|
|
}
|
|
|
|
|
2012-11-20 14:50:56 +00:00
|
|
|
static gboolean
|
|
|
|
gst_vaapisink_ensure_uploader(GstVaapiSink *sink)
|
|
|
|
{
|
|
|
|
if (!gst_vaapisink_ensure_display(sink))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!sink->uploader) {
|
|
|
|
sink->uploader = gst_vaapi_uploader_new(sink->display);
|
|
|
|
if (!sink->uploader)
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-05-12 19:40:30 +00:00
|
|
|
static gboolean
|
|
|
|
gst_vaapisink_ensure_render_rect(GstVaapiSink *sink, guint width, guint height)
|
|
|
|
{
|
|
|
|
GstVaapiRectangle * const display_rect = &sink->display_rect;
|
|
|
|
guint num, den, display_par_n, display_par_d;
|
|
|
|
gboolean success;
|
|
|
|
|
2012-02-07 14:21:05 +00:00
|
|
|
/* Return success if caps are not set yet */
|
|
|
|
if (!sink->caps)
|
|
|
|
return TRUE;
|
|
|
|
|
2013-08-16 15:58:58 +00:00
|
|
|
if (!sink->keep_aspect) {
|
|
|
|
display_rect->width = width;
|
|
|
|
display_rect->height = height;
|
|
|
|
display_rect->x = 0;
|
|
|
|
display_rect->y = 0;
|
|
|
|
|
|
|
|
GST_DEBUG("force-aspect-ratio is false; distorting while scaling video");
|
|
|
|
GST_DEBUG("render rect (%d,%d):%ux%u",
|
|
|
|
display_rect->x, display_rect->y,
|
|
|
|
display_rect->width, display_rect->height);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-05-15 04:25:32 +00:00
|
|
|
GST_DEBUG("ensure render rect within %ux%u bounds", width, height);
|
|
|
|
|
2010-05-12 19:40:30 +00:00
|
|
|
gst_vaapi_display_get_pixel_aspect_ratio(
|
|
|
|
sink->display,
|
|
|
|
&display_par_n, &display_par_d
|
|
|
|
);
|
2010-05-13 04:27:44 +00:00
|
|
|
GST_DEBUG("display pixel-aspect-ratio %d/%d",
|
|
|
|
display_par_n, display_par_d);
|
2010-05-12 19:40:30 +00:00
|
|
|
|
|
|
|
success = gst_video_calculate_display_ratio(
|
|
|
|
&num, &den,
|
|
|
|
sink->video_width, sink->video_height,
|
|
|
|
sink->video_par_n, sink->video_par_d,
|
|
|
|
display_par_n, display_par_d
|
|
|
|
);
|
|
|
|
if (!success)
|
|
|
|
return FALSE;
|
2010-05-15 04:25:32 +00:00
|
|
|
GST_DEBUG("video size %dx%d, calculated ratio %d/%d",
|
2010-05-12 19:40:30 +00:00
|
|
|
sink->video_width, sink->video_height, num, den);
|
|
|
|
|
2012-01-09 15:51:35 +00:00
|
|
|
display_rect->width = gst_util_uint64_scale_int(height, num, den);
|
|
|
|
if (display_rect->width <= width) {
|
|
|
|
GST_DEBUG("keeping window height");
|
|
|
|
display_rect->height = height;
|
2010-05-12 19:40:30 +00:00
|
|
|
}
|
|
|
|
else {
|
2012-01-09 15:51:35 +00:00
|
|
|
GST_DEBUG("keeping window width");
|
|
|
|
display_rect->width = width;
|
|
|
|
display_rect->height =
|
|
|
|
gst_util_uint64_scale_int(width, den, num);
|
2010-05-12 19:40:30 +00:00
|
|
|
}
|
2012-01-09 15:51:35 +00:00
|
|
|
GST_DEBUG("scaling video to %ux%u", display_rect->width, display_rect->height);
|
2010-05-12 19:40:30 +00:00
|
|
|
|
2012-01-09 15:51:35 +00:00
|
|
|
g_assert(display_rect->width <= width);
|
|
|
|
g_assert(display_rect->height <= height);
|
|
|
|
|
|
|
|
display_rect->x = (width - display_rect->width) / 2;
|
|
|
|
display_rect->y = (height - display_rect->height) / 2;
|
2010-05-15 04:25:32 +00:00
|
|
|
|
|
|
|
GST_DEBUG("render rect (%d,%d):%ux%u",
|
|
|
|
display_rect->x, display_rect->y,
|
|
|
|
display_rect->width, display_rect->height);
|
2010-05-12 19:40:30 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-09-04 09:53:18 +00:00
|
|
|
static void
|
|
|
|
gst_vaapisink_ensure_window_size(GstVaapiSink *sink, guint *pwidth, guint *pheight)
|
|
|
|
{
|
|
|
|
GstVideoRectangle src_rect, dst_rect, out_rect;
|
|
|
|
guint num, den, display_width, display_height, display_par_n, display_par_d;
|
|
|
|
gboolean success, scale;
|
|
|
|
|
|
|
|
if (sink->foreign_window) {
|
|
|
|
*pwidth = sink->window_width;
|
|
|
|
*pheight = sink->window_height;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_vaapi_display_get_size(sink->display, &display_width, &display_height);
|
|
|
|
if (sink->fullscreen) {
|
|
|
|
*pwidth = display_width;
|
|
|
|
*pheight = display_height;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_vaapi_display_get_pixel_aspect_ratio(
|
|
|
|
sink->display,
|
|
|
|
&display_par_n, &display_par_d
|
|
|
|
);
|
|
|
|
|
|
|
|
success = gst_video_calculate_display_ratio(
|
|
|
|
&num, &den,
|
|
|
|
sink->video_width, sink->video_height,
|
|
|
|
sink->video_par_n, sink->video_par_d,
|
|
|
|
display_par_n, display_par_d
|
|
|
|
);
|
|
|
|
if (!success) {
|
|
|
|
num = sink->video_par_n;
|
|
|
|
den = sink->video_par_d;
|
|
|
|
}
|
|
|
|
|
|
|
|
src_rect.x = 0;
|
|
|
|
src_rect.y = 0;
|
|
|
|
src_rect.w = gst_util_uint64_scale_int(sink->video_height, num, den);
|
|
|
|
src_rect.h = sink->video_height;
|
|
|
|
dst_rect.x = 0;
|
|
|
|
dst_rect.y = 0;
|
|
|
|
dst_rect.w = display_width;
|
|
|
|
dst_rect.h = display_height;
|
|
|
|
scale = (src_rect.w > dst_rect.w || src_rect.h > dst_rect.h);
|
|
|
|
gst_video_sink_center_rect(src_rect, dst_rect, &out_rect, scale);
|
|
|
|
*pwidth = out_rect.w;
|
|
|
|
*pheight = out_rect.h;
|
|
|
|
}
|
|
|
|
|
2010-03-29 14:13:26 +00:00
|
|
|
static inline gboolean
|
|
|
|
gst_vaapisink_ensure_window(GstVaapiSink *sink, guint width, guint height)
|
|
|
|
{
|
|
|
|
GstVaapiDisplay * const display = sink->display;
|
|
|
|
|
|
|
|
if (!sink->window) {
|
2012-07-23 15:49:08 +00:00
|
|
|
switch (sink->display_type) {
|
|
|
|
#if USE_GLX
|
|
|
|
case GST_VAAPI_DISPLAY_TYPE_GLX:
|
2010-03-29 14:13:26 +00:00
|
|
|
sink->window = gst_vaapi_window_glx_new(display, width, height);
|
2012-09-03 11:00:25 +00:00
|
|
|
goto notify_video_overlay_interface;
|
2010-03-29 14:13:26 +00:00
|
|
|
#endif
|
2012-07-24 13:07:48 +00:00
|
|
|
#if USE_X11
|
2012-07-23 15:49:08 +00:00
|
|
|
case GST_VAAPI_DISPLAY_TYPE_X11:
|
2010-03-29 14:13:26 +00:00
|
|
|
sink->window = gst_vaapi_window_x11_new(display, width, height);
|
2012-09-03 11:00:25 +00:00
|
|
|
notify_video_overlay_interface:
|
2012-07-24 07:45:25 +00:00
|
|
|
if (!sink->window)
|
|
|
|
break;
|
2012-09-03 11:00:25 +00:00
|
|
|
gst_video_overlay_got_window_handle(
|
|
|
|
GST_VIDEO_OVERLAY(sink),
|
2012-07-24 07:45:25 +00:00
|
|
|
gst_vaapi_window_x11_get_xid(GST_VAAPI_WINDOW_X11(sink->window))
|
|
|
|
);
|
|
|
|
break;
|
2012-07-24 13:07:48 +00:00
|
|
|
#endif
|
2012-07-24 07:45:25 +00:00
|
|
|
#if USE_WAYLAND
|
|
|
|
case GST_VAAPI_DISPLAY_TYPE_WAYLAND:
|
|
|
|
sink->window = gst_vaapi_window_wayland_new(display, width, height);
|
2012-07-23 15:49:08 +00:00
|
|
|
break;
|
2012-07-24 07:45:25 +00:00
|
|
|
#endif
|
2012-07-23 15:49:08 +00:00
|
|
|
default:
|
|
|
|
GST_ERROR("unsupported display type %d", sink->display_type);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2010-03-29 14:13:26 +00:00
|
|
|
}
|
|
|
|
return sink->window != NULL;
|
|
|
|
}
|
|
|
|
|
2012-07-24 13:07:48 +00:00
|
|
|
#if USE_X11
|
2010-05-12 19:35:45 +00:00
|
|
|
static gboolean
|
2011-07-28 08:14:49 +00:00
|
|
|
gst_vaapisink_ensure_window_xid(GstVaapiSink *sink, guintptr window_id)
|
2010-03-15 17:09:12 +00:00
|
|
|
{
|
2010-05-13 04:22:31 +00:00
|
|
|
Window rootwin;
|
|
|
|
unsigned int width, height, border_width, depth;
|
|
|
|
int x, y;
|
2011-07-28 08:14:49 +00:00
|
|
|
XID xid = window_id;
|
2010-05-12 19:35:45 +00:00
|
|
|
|
2012-07-23 15:49:08 +00:00
|
|
|
if (!gst_vaapisink_ensure_display(sink))
|
2010-05-12 19:35:45 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
gst_vaapi_display_lock(sink->display);
|
2010-05-13 04:22:31 +00:00
|
|
|
XGetGeometry(
|
2010-05-12 19:35:45 +00:00
|
|
|
gst_vaapi_display_x11_get_display(GST_VAAPI_DISPLAY_X11(sink->display)),
|
|
|
|
xid,
|
2010-05-13 04:22:31 +00:00
|
|
|
&rootwin,
|
|
|
|
&x, &y, &width, &height, &border_width, &depth
|
2010-05-12 19:35:45 +00:00
|
|
|
);
|
|
|
|
gst_vaapi_display_unlock(sink->display);
|
|
|
|
|
2010-05-17 08:55:51 +00:00
|
|
|
if ((width != sink->window_width || height != sink->window_height) &&
|
|
|
|
!configure_notify_event_pending(sink, xid, width, height)) {
|
2010-05-13 04:22:31 +00:00
|
|
|
if (!gst_vaapisink_ensure_render_rect(sink, width, height))
|
2010-05-12 19:40:30 +00:00
|
|
|
return FALSE;
|
2010-05-13 04:22:31 +00:00
|
|
|
sink->window_width = width;
|
|
|
|
sink->window_height = height;
|
2010-05-12 19:35:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (sink->window &&
|
|
|
|
gst_vaapi_window_x11_get_xid(GST_VAAPI_WINDOW_X11(sink->window)) == xid)
|
|
|
|
return TRUE;
|
|
|
|
|
2013-05-06 12:43:38 +00:00
|
|
|
gst_vaapi_window_replace(&sink->window, NULL);
|
2010-05-12 19:35:45 +00:00
|
|
|
|
2012-07-23 15:49:08 +00:00
|
|
|
switch (sink->display_type) {
|
|
|
|
#if USE_GLX
|
|
|
|
case GST_VAAPI_DISPLAY_TYPE_GLX:
|
2010-05-12 19:35:45 +00:00
|
|
|
sink->window = gst_vaapi_window_glx_new_with_xid(sink->display, xid);
|
2012-07-23 15:49:08 +00:00
|
|
|
break;
|
2010-03-29 14:13:26 +00:00
|
|
|
#endif
|
2012-07-23 15:49:08 +00:00
|
|
|
case GST_VAAPI_DISPLAY_TYPE_X11:
|
2010-05-12 19:35:45 +00:00
|
|
|
sink->window = gst_vaapi_window_x11_new_with_xid(sink->display, xid);
|
2012-07-23 15:49:08 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
GST_ERROR("unsupported display type %d", sink->display_type);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2010-05-12 19:35:45 +00:00
|
|
|
return sink->window != NULL;
|
2010-03-15 17:09:12 +00:00
|
|
|
}
|
2012-07-24 13:07:48 +00:00
|
|
|
#endif
|
2010-03-15 17:09:12 +00:00
|
|
|
|
2012-08-28 06:45:22 +00:00
|
|
|
static gboolean
|
|
|
|
gst_vaapisink_ensure_rotation(GstVaapiSink *sink, gboolean recalc_display_rect)
|
|
|
|
{
|
|
|
|
gboolean success = FALSE;
|
|
|
|
|
|
|
|
g_return_val_if_fail(sink->display, FALSE);
|
|
|
|
|
|
|
|
if (sink->rotation == sink->rotation_req)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
if (!sink->use_rotation) {
|
|
|
|
GST_WARNING("VA display does not support rotation");
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_vaapi_display_lock(sink->display);
|
|
|
|
success = gst_vaapi_display_set_rotation(sink->display, sink->rotation_req);
|
|
|
|
gst_vaapi_display_unlock(sink->display);
|
|
|
|
if (!success) {
|
|
|
|
GST_ERROR("failed to change VA display rotation mode");
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (((sink->rotation + sink->rotation_req) % 180) == 90) {
|
|
|
|
/* Orientation changed */
|
|
|
|
G_PRIMITIVE_SWAP(guint, sink->video_width, sink->video_height);
|
|
|
|
G_PRIMITIVE_SWAP(gint, sink->video_par_n, sink->video_par_d);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (recalc_display_rect && !sink->foreign_window)
|
|
|
|
gst_vaapisink_ensure_render_rect(sink, sink->window_width,
|
|
|
|
sink->window_height);
|
|
|
|
success = TRUE;
|
|
|
|
|
|
|
|
end:
|
|
|
|
sink->rotation = sink->rotation_req;
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2012-11-08 14:41:22 +00:00
|
|
|
static gboolean
|
|
|
|
gst_vaapisink_ensure_video_buffer_pool(GstVaapiSink *sink, GstCaps *caps)
|
|
|
|
{
|
2013-03-20 13:40:57 +00:00
|
|
|
#if GST_CHECK_VERSION(1,0,0)
|
2012-11-08 14:41:22 +00:00
|
|
|
GstBufferPool *pool;
|
|
|
|
GstCaps *pool_caps;
|
|
|
|
GstStructure *config;
|
|
|
|
GstVideoInfo vi;
|
|
|
|
gboolean need_pool;
|
|
|
|
|
|
|
|
if (!gst_vaapisink_ensure_display(sink))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (sink->video_buffer_pool) {
|
|
|
|
config = gst_buffer_pool_get_config(sink->video_buffer_pool);
|
|
|
|
gst_buffer_pool_config_get_params(config, &pool_caps, NULL, NULL, NULL);
|
|
|
|
need_pool = !gst_caps_is_equal(caps, pool_caps);
|
|
|
|
gst_structure_free(config);
|
|
|
|
if (!need_pool)
|
|
|
|
return TRUE;
|
|
|
|
g_clear_object(&sink->video_buffer_pool);
|
|
|
|
sink->video_buffer_size = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
pool = gst_vaapi_video_buffer_pool_new(sink->display);
|
|
|
|
if (!pool)
|
|
|
|
goto error_create_pool;
|
|
|
|
|
|
|
|
gst_video_info_init(&vi);
|
|
|
|
gst_video_info_from_caps(&vi, caps);
|
|
|
|
if (GST_VIDEO_INFO_FORMAT(&vi) == GST_VIDEO_FORMAT_ENCODED) {
|
|
|
|
GST_DEBUG("assume video buffer pool format is NV12");
|
|
|
|
gst_video_info_set_format(&vi, GST_VIDEO_FORMAT_NV12,
|
|
|
|
GST_VIDEO_INFO_WIDTH(&vi), GST_VIDEO_INFO_HEIGHT(&vi));
|
|
|
|
}
|
|
|
|
sink->video_buffer_size = vi.size;
|
|
|
|
|
|
|
|
config = gst_buffer_pool_get_config(pool);
|
|
|
|
gst_buffer_pool_config_set_params(config, caps, sink->video_buffer_size,
|
|
|
|
0, 0);
|
|
|
|
gst_buffer_pool_config_add_option(config,
|
|
|
|
GST_BUFFER_POOL_OPTION_VAAPI_VIDEO_META);
|
2013-08-29 16:34:57 +00:00
|
|
|
gst_buffer_pool_config_add_option(config,
|
|
|
|
GST_BUFFER_POOL_OPTION_VIDEO_META);
|
2012-11-08 14:41:22 +00:00
|
|
|
if (!gst_buffer_pool_set_config(pool, config))
|
|
|
|
goto error_pool_config;
|
|
|
|
sink->video_buffer_pool = pool;
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
error_create_pool:
|
|
|
|
{
|
|
|
|
GST_ERROR("failed to create buffer pool");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
error_pool_config:
|
|
|
|
{
|
|
|
|
GST_ERROR("failed to reset buffer pool config");
|
2013-04-18 08:06:15 +00:00
|
|
|
gst_object_unref(pool);
|
2012-11-08 14:41:22 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2013-03-20 13:40:57 +00:00
|
|
|
#else
|
|
|
|
return TRUE;
|
|
|
|
#endif
|
2012-11-08 14:41:22 +00:00
|
|
|
}
|
|
|
|
|
2010-03-15 17:09:12 +00:00
|
|
|
static gboolean
|
|
|
|
gst_vaapisink_start(GstBaseSink *base_sink)
|
|
|
|
{
|
2012-01-11 13:11:30 +00:00
|
|
|
GstVaapiSink * const sink = GST_VAAPISINK(base_sink);
|
|
|
|
|
2013-05-14 07:19:04 +00:00
|
|
|
return gst_vaapisink_ensure_uploader(sink);
|
2010-03-15 17:09:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_vaapisink_stop(GstBaseSink *base_sink)
|
|
|
|
{
|
|
|
|
GstVaapiSink * const sink = GST_VAAPISINK(base_sink);
|
|
|
|
|
2012-08-24 13:30:33 +00:00
|
|
|
gst_buffer_replace(&sink->video_buffer, NULL);
|
2013-03-20 13:40:57 +00:00
|
|
|
#if GST_CHECK_VERSION(1,0,0)
|
2012-11-08 14:41:22 +00:00
|
|
|
g_clear_object(&sink->video_buffer_pool);
|
2013-03-20 13:40:57 +00:00
|
|
|
#endif
|
2013-05-06 12:43:38 +00:00
|
|
|
gst_vaapi_window_replace(&sink->window, NULL);
|
|
|
|
gst_vaapi_display_replace(&sink->display, NULL);
|
2012-11-20 13:28:55 +00:00
|
|
|
g_clear_object(&sink->uploader);
|
2010-03-15 17:09:12 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-11-20 14:50:56 +00:00
|
|
|
static GstCaps *
|
2013-03-20 13:40:57 +00:00
|
|
|
gst_vaapisink_get_caps_impl(GstBaseSink *base_sink)
|
2012-11-20 14:50:56 +00:00
|
|
|
{
|
|
|
|
GstVaapiSink * const sink = GST_VAAPISINK(base_sink);
|
|
|
|
GstCaps *out_caps, *yuv_caps;
|
|
|
|
|
2013-07-04 08:03:52 +00:00
|
|
|
#if GST_CHECK_VERSION(1,1,0)
|
|
|
|
out_caps = gst_static_pad_template_get_caps(&gst_vaapisink_sink_factory);
|
|
|
|
#else
|
2012-11-20 14:50:56 +00:00
|
|
|
out_caps = gst_caps_from_string(GST_VAAPI_SURFACE_CAPS);
|
2013-07-04 08:03:52 +00:00
|
|
|
#endif
|
2012-11-20 14:50:56 +00:00
|
|
|
if (!out_caps)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (gst_vaapisink_ensure_uploader(sink)) {
|
|
|
|
yuv_caps = gst_vaapi_uploader_get_caps(sink->uploader);
|
2013-07-04 08:03:52 +00:00
|
|
|
if (yuv_caps) {
|
|
|
|
out_caps = gst_caps_make_writable(out_caps);
|
2012-11-20 14:50:56 +00:00
|
|
|
gst_caps_append(out_caps, gst_caps_copy(yuv_caps));
|
2013-07-04 08:03:52 +00:00
|
|
|
}
|
2012-11-20 14:50:56 +00:00
|
|
|
}
|
|
|
|
return out_caps;
|
|
|
|
}
|
|
|
|
|
2013-03-20 13:40:57 +00:00
|
|
|
#if GST_CHECK_VERSION(1,0,0)
|
|
|
|
static inline GstCaps *
|
|
|
|
gst_vaapisink_get_caps(GstBaseSink *base_sink, GstCaps *filter)
|
|
|
|
{
|
2013-07-31 08:49:20 +00:00
|
|
|
GstCaps *caps, *out_caps;
|
|
|
|
|
|
|
|
caps = gst_vaapisink_get_caps_impl(base_sink);
|
|
|
|
if (caps && filter) {
|
|
|
|
out_caps = gst_caps_intersect_full(caps, filter,
|
|
|
|
GST_CAPS_INTERSECT_FIRST);
|
|
|
|
gst_caps_unref(caps);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
out_caps = caps;
|
|
|
|
return out_caps;
|
2013-03-20 13:40:57 +00:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define gst_vaapisink_get_caps gst_vaapisink_get_caps_impl
|
|
|
|
#endif
|
|
|
|
|
2010-05-12 12:58:53 +00:00
|
|
|
static gboolean
|
|
|
|
gst_vaapisink_set_caps(GstBaseSink *base_sink, GstCaps *caps)
|
|
|
|
{
|
|
|
|
GstVaapiSink * const sink = GST_VAAPISINK(base_sink);
|
2013-08-29 16:34:57 +00:00
|
|
|
GstVideoInfo * const vip = &sink->video_info;
|
2012-09-04 09:53:18 +00:00
|
|
|
guint win_width, win_height;
|
2010-05-12 12:58:53 +00:00
|
|
|
|
2012-08-01 13:46:35 +00:00
|
|
|
#if USE_DRM
|
|
|
|
if (sink->display_type == GST_VAAPI_DISPLAY_TYPE_DRM)
|
|
|
|
return TRUE;
|
|
|
|
#endif
|
|
|
|
|
2012-11-08 14:41:22 +00:00
|
|
|
if (!gst_vaapisink_ensure_video_buffer_pool(sink, caps))
|
|
|
|
return FALSE;
|
|
|
|
|
2013-08-29 16:34:57 +00:00
|
|
|
if (!gst_video_info_from_caps(vip, caps))
|
2010-05-12 12:58:53 +00:00
|
|
|
return FALSE;
|
2013-08-29 16:34:57 +00:00
|
|
|
sink->use_video_raw = GST_VIDEO_INFO_IS_YUV(vip);
|
|
|
|
sink->video_width = GST_VIDEO_INFO_WIDTH(vip);
|
|
|
|
sink->video_height = GST_VIDEO_INFO_HEIGHT(vip);
|
|
|
|
sink->video_par_n = GST_VIDEO_INFO_PAR_N(vip);
|
|
|
|
sink->video_par_d = GST_VIDEO_INFO_PAR_D(vip);
|
2013-03-20 11:57:18 +00:00
|
|
|
GST_DEBUG("video pixel-aspect-ratio %d/%d",
|
|
|
|
sink->video_par_n, sink->video_par_d);
|
2010-05-12 12:58:53 +00:00
|
|
|
|
2012-02-07 14:21:05 +00:00
|
|
|
gst_caps_replace(&sink->caps, caps);
|
|
|
|
|
2012-07-23 15:49:08 +00:00
|
|
|
if (!gst_vaapisink_ensure_display(sink))
|
2011-11-04 20:50:15 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2013-04-18 11:49:42 +00:00
|
|
|
#if !GST_CHECK_VERSION(1,0,0)
|
|
|
|
if (sink->use_video_raw) {
|
|
|
|
/* Ensure the uploader is set up for upstream allocated buffers */
|
|
|
|
if (!gst_vaapi_uploader_ensure_display(sink->uploader, sink->display))
|
|
|
|
return FALSE;
|
|
|
|
if (!gst_vaapi_uploader_ensure_caps(sink->uploader, caps, NULL))
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-08-28 06:45:22 +00:00
|
|
|
gst_vaapisink_ensure_rotation(sink, FALSE);
|
|
|
|
|
2012-09-04 09:53:18 +00:00
|
|
|
gst_vaapisink_ensure_window_size(sink, &win_width, &win_height);
|
2012-02-07 14:23:22 +00:00
|
|
|
if (sink->window) {
|
|
|
|
if (!sink->foreign_window || sink->fullscreen)
|
|
|
|
gst_vaapi_window_set_size(sink->window, win_width, win_height);
|
|
|
|
}
|
2010-03-17 07:20:19 +00:00
|
|
|
else {
|
2010-05-12 12:58:53 +00:00
|
|
|
gst_vaapi_display_lock(sink->display);
|
2012-09-03 11:00:25 +00:00
|
|
|
gst_video_overlay_prepare_window_handle(GST_VIDEO_OVERLAY(sink));
|
2010-05-12 12:58:53 +00:00
|
|
|
gst_vaapi_display_unlock(sink->display);
|
|
|
|
if (sink->window)
|
|
|
|
return TRUE;
|
2010-03-29 14:13:26 +00:00
|
|
|
if (!gst_vaapisink_ensure_window(sink, win_width, win_height))
|
2010-03-17 07:20:19 +00:00
|
|
|
return FALSE;
|
2010-03-22 12:03:26 +00:00
|
|
|
gst_vaapi_window_set_fullscreen(sink->window, sink->fullscreen);
|
2010-03-17 07:20:19 +00:00
|
|
|
gst_vaapi_window_show(sink->window);
|
2012-01-09 10:23:39 +00:00
|
|
|
gst_vaapi_window_get_size(sink->window, &win_width, &win_height);
|
2010-03-17 07:20:19 +00:00
|
|
|
}
|
2010-03-29 16:17:38 +00:00
|
|
|
sink->window_width = win_width;
|
|
|
|
sink->window_height = win_height;
|
2012-01-09 10:23:39 +00:00
|
|
|
GST_DEBUG("window size %ux%u", win_width, win_height);
|
|
|
|
|
|
|
|
return gst_vaapisink_ensure_render_rect(sink, win_width, win_height);
|
2010-03-17 07:20:19 +00:00
|
|
|
}
|
|
|
|
|
2012-07-23 15:49:08 +00:00
|
|
|
#if USE_GLX
|
2010-03-29 15:59:44 +00:00
|
|
|
static void
|
|
|
|
render_background(GstVaapiSink *sink)
|
|
|
|
{
|
|
|
|
/* Original code from Mirco Muller (MacSlow):
|
|
|
|
<http://cgit.freedesktop.org/~macslow/gl-gst-player/> */
|
|
|
|
GLfloat fStartX = 0.0f;
|
|
|
|
GLfloat fStartY = 0.0f;
|
2010-03-29 16:17:38 +00:00
|
|
|
GLfloat fWidth = (GLfloat)sink->window_width;
|
|
|
|
GLfloat fHeight = (GLfloat)sink->window_height;
|
2010-03-29 15:59:44 +00:00
|
|
|
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
glBegin(GL_QUADS);
|
|
|
|
{
|
|
|
|
/* top third, darker grey to white */
|
|
|
|
glColor3f(0.85f, 0.85f, 0.85f);
|
|
|
|
glVertex3f(fStartX, fStartY, 0.0f);
|
|
|
|
glColor3f(0.85f, 0.85f, 0.85f);
|
|
|
|
glVertex3f(fStartX + fWidth, fStartY, 0.0f);
|
|
|
|
glColor3f(1.0f, 1.0f, 1.0f);
|
|
|
|
glVertex3f(fStartX + fWidth, fStartY + fHeight / 3.0f, 0.0f);
|
|
|
|
glColor3f(1.0f, 1.0f, 1.0f);
|
|
|
|
glVertex3f(fStartX, fStartY + fHeight / 3.0f, 0.0f);
|
|
|
|
|
|
|
|
/* middle third, just plain white */
|
|
|
|
glColor3f(1.0f, 1.0f, 1.0f);
|
|
|
|
glVertex3f(fStartX, fStartY + fHeight / 3.0f, 0.0f);
|
|
|
|
glVertex3f(fStartX + fWidth, fStartY + fHeight / 3.0f, 0.0f);
|
|
|
|
glVertex3f(fStartX + fWidth, fStartY + 2.0f * fHeight / 3.0f, 0.0f);
|
|
|
|
glVertex3f(fStartX, fStartY + 2.0f * fHeight / 3.0f, 0.0f);
|
|
|
|
|
|
|
|
/* bottom third, white to lighter grey */
|
|
|
|
glColor3f(1.0f, 1.0f, 1.0f);
|
|
|
|
glVertex3f(fStartX, fStartY + 2.0f * fHeight / 3.0f, 0.0f);
|
|
|
|
glColor3f(1.0f, 1.0f, 1.0f);
|
|
|
|
glVertex3f(fStartX + fWidth, fStartY + 2.0f * fHeight / 3.0f, 0.0f);
|
|
|
|
glColor3f(0.62f, 0.66f, 0.69f);
|
|
|
|
glVertex3f(fStartX + fWidth, fStartY + fHeight, 0.0f);
|
|
|
|
glColor3f(0.62f, 0.66f, 0.69f);
|
|
|
|
glVertex3f(fStartX, fStartY + fHeight, 0.0f);
|
|
|
|
}
|
|
|
|
glEnd();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-07-08 12:50:42 +00:00
|
|
|
render_frame(GstVaapiSink *sink, GstVaapiSurface *surface,
|
|
|
|
const GstVaapiRectangle *surface_rect)
|
2010-03-29 15:59:44 +00:00
|
|
|
{
|
2010-03-29 16:24:37 +00:00
|
|
|
const guint x1 = sink->display_rect.x;
|
|
|
|
const guint x2 = sink->display_rect.x + sink->display_rect.width;
|
|
|
|
const guint y1 = sink->display_rect.y;
|
|
|
|
const guint y2 = sink->display_rect.y + sink->display_rect.height;
|
2013-07-08 12:50:42 +00:00
|
|
|
gfloat tx1, tx2, ty1, ty2;
|
|
|
|
guint width, height;
|
|
|
|
|
|
|
|
if (surface_rect) {
|
|
|
|
gst_vaapi_surface_get_size(surface, &width, &height);
|
|
|
|
tx1 = (gfloat)surface_rect->x / width;
|
|
|
|
ty1 = (gfloat)surface_rect->y / height;
|
|
|
|
tx2 = (gfloat)(surface_rect->x + surface_rect->width) / width;
|
|
|
|
ty2 = (gfloat)(surface_rect->y + surface_rect->height) / height;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
tx1 = 0.0f;
|
|
|
|
ty1 = 0.0f;
|
|
|
|
tx2 = 1.0f;
|
|
|
|
ty2 = 1.0f;
|
|
|
|
}
|
2010-03-29 15:59:44 +00:00
|
|
|
|
|
|
|
glColor4f(1.0f, 1.0f, 1.0f, 1.0f);
|
|
|
|
glBegin(GL_QUADS);
|
|
|
|
{
|
2013-07-08 12:50:42 +00:00
|
|
|
glTexCoord2f(tx1, ty1); glVertex2i(x1, y1);
|
|
|
|
glTexCoord2f(tx1, ty2); glVertex2i(x1, y2);
|
|
|
|
glTexCoord2f(tx2, ty2); glVertex2i(x2, y2);
|
|
|
|
glTexCoord2f(tx2, ty1); glVertex2i(x2, y1);
|
2010-03-29 15:59:44 +00:00
|
|
|
}
|
|
|
|
glEnd();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
render_reflection(GstVaapiSink *sink)
|
|
|
|
{
|
2010-03-29 16:24:37 +00:00
|
|
|
const guint x1 = sink->display_rect.x;
|
|
|
|
const guint x2 = sink->display_rect.x + sink->display_rect.width;
|
|
|
|
const guint y1 = sink->display_rect.y;
|
|
|
|
const guint rh = sink->display_rect.height / 5;
|
|
|
|
GLfloat ry = 1.0f - (GLfloat)rh / (GLfloat)sink->display_rect.height;
|
2010-03-29 15:59:44 +00:00
|
|
|
|
|
|
|
glBegin(GL_QUADS);
|
|
|
|
{
|
|
|
|
glColor4f(1.0f, 1.0f, 1.0f, 1.0f);
|
2010-03-29 16:24:37 +00:00
|
|
|
glTexCoord2f(0.0f, 1.0f); glVertex2i(x1, y1);
|
|
|
|
glTexCoord2f(1.0f, 1.0f); glVertex2i(x2, y1);
|
2010-03-29 15:59:44 +00:00
|
|
|
|
|
|
|
glColor4f(1.0f, 1.0f, 1.0f, 0.0f);
|
2010-03-29 16:24:37 +00:00
|
|
|
glTexCoord2f(1.0f, ry); glVertex2i(x2, y1 + rh);
|
|
|
|
glTexCoord2f(0.0f, ry); glVertex2i(x1, y1 + rh);
|
2010-03-29 15:59:44 +00:00
|
|
|
}
|
|
|
|
glEnd();
|
|
|
|
}
|
|
|
|
|
2013-07-08 16:32:00 +00:00
|
|
|
static gboolean
|
|
|
|
gst_vaapisink_ensure_texture(GstVaapiSink *sink, GstVaapiSurface *surface)
|
|
|
|
{
|
|
|
|
GstVideoRectangle tex_rect, dis_rect, out_rect;
|
|
|
|
guint width, height;
|
|
|
|
|
|
|
|
if (sink->texture)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
gst_vaapi_surface_get_size(surface, &width, &height);
|
|
|
|
tex_rect.x = 0;
|
|
|
|
tex_rect.y = 0;
|
|
|
|
tex_rect.w = width;
|
|
|
|
tex_rect.h = height;
|
|
|
|
|
|
|
|
gst_vaapi_display_get_size(sink->display, &width, &height);
|
|
|
|
dis_rect.x = 0;
|
|
|
|
dis_rect.y = 0;
|
|
|
|
dis_rect.w = width;
|
|
|
|
dis_rect.h = height;
|
|
|
|
|
|
|
|
gst_video_sink_center_rect(tex_rect, dis_rect, &out_rect, TRUE);
|
|
|
|
|
|
|
|
/* XXX: use surface size for now since some VA drivers have issues
|
|
|
|
with downscaling to the provided texture size. i.e. we should be
|
|
|
|
using the resulting out_rect size, which preserves the aspect
|
|
|
|
ratio of the surface */
|
|
|
|
width = tex_rect.w;
|
|
|
|
height = tex_rect.h;
|
|
|
|
GST_INFO("texture size %ux%u", width, height);
|
|
|
|
|
|
|
|
sink->texture = gst_vaapi_texture_new(sink->display,
|
|
|
|
GL_TEXTURE_2D, GL_BGRA, width, height);
|
|
|
|
return sink->texture != NULL;
|
|
|
|
}
|
|
|
|
|
2010-03-29 15:59:44 +00:00
|
|
|
static gboolean
|
2010-05-17 08:24:42 +00:00
|
|
|
gst_vaapisink_show_frame_glx(
|
2013-07-08 12:50:42 +00:00
|
|
|
GstVaapiSink *sink,
|
|
|
|
GstVaapiSurface *surface,
|
|
|
|
const GstVaapiRectangle *surface_rect,
|
|
|
|
guint flags
|
2010-05-17 08:24:42 +00:00
|
|
|
)
|
2010-03-29 15:59:44 +00:00
|
|
|
{
|
|
|
|
GstVaapiWindowGLX * const window = GST_VAAPI_WINDOW_GLX(sink->window);
|
|
|
|
GLenum target;
|
|
|
|
GLuint texture;
|
|
|
|
|
2010-05-17 08:24:42 +00:00
|
|
|
gst_vaapi_window_glx_make_current(window);
|
2013-07-08 16:32:00 +00:00
|
|
|
if (!gst_vaapisink_ensure_texture(sink, surface))
|
|
|
|
goto error_create_texture;
|
2010-05-17 08:24:42 +00:00
|
|
|
if (!gst_vaapi_texture_put_surface(sink->texture, surface, flags))
|
|
|
|
goto error_transfer_surface;
|
2010-03-29 15:59:44 +00:00
|
|
|
|
|
|
|
target = gst_vaapi_texture_get_target(sink->texture);
|
|
|
|
texture = gst_vaapi_texture_get_id(sink->texture);
|
|
|
|
if (target != GL_TEXTURE_2D || !texture)
|
|
|
|
return FALSE;
|
|
|
|
|
2010-07-01 13:19:29 +00:00
|
|
|
if (sink->use_reflection)
|
|
|
|
render_background(sink);
|
2010-03-29 15:59:44 +00:00
|
|
|
|
|
|
|
glEnable(target);
|
|
|
|
glBindTexture(target, texture);
|
|
|
|
{
|
2010-05-17 08:24:42 +00:00
|
|
|
if (sink->use_reflection) {
|
|
|
|
glPushMatrix();
|
|
|
|
glRotatef(20.0f, 0.0f, 1.0f, 0.0f);
|
|
|
|
glTranslatef(50.0f, 0.0f, 0.0f);
|
|
|
|
}
|
2013-07-08 12:50:42 +00:00
|
|
|
render_frame(sink, surface, surface_rect);
|
2010-05-17 08:24:42 +00:00
|
|
|
if (sink->use_reflection) {
|
|
|
|
glPushMatrix();
|
|
|
|
glTranslatef(0.0, (GLfloat)sink->display_rect.height + 5.0f, 0.0f);
|
|
|
|
render_reflection(sink);
|
|
|
|
glPopMatrix();
|
|
|
|
glPopMatrix();
|
|
|
|
}
|
2010-03-29 15:59:44 +00:00
|
|
|
}
|
|
|
|
glBindTexture(target, 0);
|
|
|
|
glDisable(target);
|
2010-05-17 08:24:42 +00:00
|
|
|
gst_vaapi_window_glx_swap_buffers(window);
|
2010-03-29 15:59:44 +00:00
|
|
|
return TRUE;
|
2010-05-17 08:24:42 +00:00
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
error_create_texture:
|
|
|
|
{
|
|
|
|
GST_DEBUG("could not create VA/GLX texture");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
error_transfer_surface:
|
|
|
|
{
|
|
|
|
GST_DEBUG("could not transfer VA surface to texture");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2010-03-29 15:59:44 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-05-17 08:24:42 +00:00
|
|
|
static inline gboolean
|
2012-07-24 07:45:25 +00:00
|
|
|
gst_vaapisink_put_surface(
|
2013-07-08 12:50:42 +00:00
|
|
|
GstVaapiSink *sink,
|
|
|
|
GstVaapiSurface *surface,
|
|
|
|
const GstVaapiRectangle *surface_rect,
|
|
|
|
guint flags
|
2010-05-17 08:24:42 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
if (!gst_vaapi_window_put_surface(sink->window, surface,
|
2013-07-08 12:50:42 +00:00
|
|
|
surface_rect, &sink->display_rect, flags)) {
|
2010-05-17 08:24:42 +00:00
|
|
|
GST_DEBUG("could not render VA surface");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-08-29 16:34:57 +00:00
|
|
|
#if GST_CHECK_VERSION(1,0,0)
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_vaapisink_get_render_buffer(GstVaapiSink *sink, GstBuffer *src_buffer,
|
|
|
|
GstBuffer **out_buffer_ptr)
|
|
|
|
{
|
|
|
|
GstVaapiVideoMeta *meta;
|
|
|
|
GstBuffer *out_buffer;
|
|
|
|
GstBufferPoolAcquireParams params = { 0, };
|
|
|
|
GstVideoFrame src_frame, out_frame;
|
|
|
|
GstFlowReturn ret;
|
|
|
|
|
|
|
|
meta = gst_buffer_get_vaapi_video_meta(src_buffer);
|
|
|
|
if (meta) {
|
|
|
|
*out_buffer_ptr = gst_buffer_ref(src_buffer);
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!sink->use_video_raw) {
|
|
|
|
GST_ERROR("unsupported video buffer");
|
|
|
|
return GST_FLOW_EOS;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_DEBUG("buffer %p not from our pool, copying", src_buffer);
|
|
|
|
|
|
|
|
*out_buffer_ptr = NULL;
|
|
|
|
if (!sink->video_buffer_pool)
|
|
|
|
goto error_no_pool;
|
|
|
|
|
|
|
|
if (!gst_buffer_pool_set_active(sink->video_buffer_pool, TRUE))
|
|
|
|
goto error_activate_pool;
|
|
|
|
|
|
|
|
params.flags = GST_BUFFER_POOL_ACQUIRE_FLAG_DONTWAIT;
|
|
|
|
ret = gst_buffer_pool_acquire_buffer(sink->video_buffer_pool, &out_buffer,
|
|
|
|
¶ms);
|
|
|
|
if (ret != GST_FLOW_OK)
|
|
|
|
goto error_create_buffer;
|
|
|
|
|
|
|
|
if (!gst_video_frame_map(&src_frame, &sink->video_info, src_buffer,
|
|
|
|
GST_MAP_READ))
|
|
|
|
goto error_map_src_buffer;
|
|
|
|
|
|
|
|
if (!gst_video_frame_map(&out_frame, &sink->video_info, out_buffer,
|
|
|
|
GST_MAP_WRITE))
|
|
|
|
goto error_map_dst_buffer;
|
|
|
|
|
|
|
|
gst_video_frame_copy(&out_frame, &src_frame);
|
|
|
|
gst_video_frame_unmap(&out_frame);
|
|
|
|
gst_video_frame_unmap(&src_frame);
|
|
|
|
|
|
|
|
*out_buffer_ptr = out_buffer;
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
error_no_pool:
|
|
|
|
GST_ERROR("no buffer pool was negotiated");
|
|
|
|
return GST_FLOW_ERROR;
|
|
|
|
error_activate_pool:
|
|
|
|
GST_ERROR("failed to activate buffer pool");
|
|
|
|
return GST_FLOW_ERROR;
|
|
|
|
error_create_buffer:
|
|
|
|
GST_WARNING("failed to create image. Skipping this frame");
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
error_map_dst_buffer:
|
|
|
|
gst_video_frame_unmap(&src_frame);
|
|
|
|
// fall-through
|
|
|
|
error_map_src_buffer:
|
|
|
|
GST_WARNING("failed to map buffer. Skipping this frame");
|
|
|
|
gst_buffer_unref(out_buffer);
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
2013-08-29 17:07:34 +00:00
|
|
|
#else
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_vaapisink_get_render_buffer(GstVaapiSink *sink, GstBuffer *src_buffer,
|
|
|
|
GstBuffer **out_buffer_ptr)
|
|
|
|
{
|
|
|
|
GstVaapiVideoMeta *meta;
|
|
|
|
GstBuffer *out_buffer;
|
|
|
|
|
|
|
|
*out_buffer_ptr = NULL;
|
|
|
|
meta = gst_buffer_get_vaapi_video_meta(src_buffer);
|
|
|
|
if (meta)
|
|
|
|
out_buffer = gst_buffer_ref(src_buffer);
|
|
|
|
else if (sink->use_video_raw) {
|
|
|
|
out_buffer = gst_vaapi_uploader_get_buffer(sink->uploader);
|
|
|
|
if (!out_buffer)
|
|
|
|
goto error_create_buffer;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
GST_ERROR("unsupported video buffer");
|
|
|
|
return GST_FLOW_EOS;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sink->use_video_raw &&
|
|
|
|
!gst_vaapi_uploader_process(sink->uploader, src_buffer, out_buffer))
|
|
|
|
goto error_copy_buffer;
|
|
|
|
|
|
|
|
*out_buffer_ptr = out_buffer;
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
error_create_buffer:
|
|
|
|
GST_WARNING("failed to create buffer. Skipping this frame");
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
error_copy_buffer:
|
|
|
|
GST_WARNING("failed to copy buffers. Skipping this frame");
|
|
|
|
gst_buffer_unref(out_buffer);
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
2013-08-29 16:34:57 +00:00
|
|
|
#endif
|
|
|
|
|
2010-03-15 17:09:12 +00:00
|
|
|
static GstFlowReturn
|
2012-12-04 10:01:42 +00:00
|
|
|
gst_vaapisink_show_frame(GstBaseSink *base_sink, GstBuffer *src_buffer)
|
2010-03-15 17:09:12 +00:00
|
|
|
{
|
2010-03-17 07:20:19 +00:00
|
|
|
GstVaapiSink * const sink = GST_VAAPISINK(base_sink);
|
2013-01-05 16:55:47 +00:00
|
|
|
GstVaapiVideoMeta *meta;
|
2010-03-15 17:09:12 +00:00
|
|
|
GstVaapiSurface *surface;
|
2012-12-04 10:01:42 +00:00
|
|
|
GstBuffer *buffer;
|
2010-03-17 07:20:19 +00:00
|
|
|
guint flags;
|
2010-05-17 08:24:42 +00:00
|
|
|
gboolean success;
|
2013-07-08 12:50:42 +00:00
|
|
|
GstVaapiRectangle *surface_rect = NULL;
|
|
|
|
#if GST_CHECK_VERSION(1,0,0)
|
|
|
|
GstVaapiRectangle tmp_rect;
|
|
|
|
#endif
|
2013-08-29 16:34:57 +00:00
|
|
|
GstFlowReturn ret;
|
2010-03-17 07:20:19 +00:00
|
|
|
|
2012-09-03 11:00:25 +00:00
|
|
|
#if GST_CHECK_VERSION(1,0,0)
|
2013-07-08 12:50:42 +00:00
|
|
|
GstVideoCropMeta * const crop_meta =
|
2013-08-29 16:34:57 +00:00
|
|
|
gst_buffer_get_video_crop_meta(src_buffer);
|
2013-07-08 12:50:42 +00:00
|
|
|
if (crop_meta) {
|
|
|
|
surface_rect = &tmp_rect;
|
|
|
|
surface_rect->x = crop_meta->x;
|
|
|
|
surface_rect->y = crop_meta->y;
|
|
|
|
surface_rect->width = crop_meta->width;
|
|
|
|
surface_rect->height = crop_meta->height;
|
|
|
|
}
|
2013-08-29 17:07:34 +00:00
|
|
|
#endif
|
2013-08-29 16:34:57 +00:00
|
|
|
|
|
|
|
ret = gst_vaapisink_get_render_buffer(sink, src_buffer, &buffer);
|
|
|
|
if (ret != GST_FLOW_OK || !buffer)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
meta = gst_buffer_get_vaapi_video_meta(buffer);
|
2013-05-06 12:43:38 +00:00
|
|
|
if (sink->display != gst_vaapi_video_meta_get_display(meta))
|
|
|
|
gst_vaapi_display_replace(&sink->display,
|
|
|
|
gst_vaapi_video_meta_get_display(meta));
|
2011-11-04 20:50:15 +00:00
|
|
|
|
2010-03-17 07:20:19 +00:00
|
|
|
if (!sink->window)
|
2012-11-20 13:28:55 +00:00
|
|
|
goto error;
|
2010-03-15 17:09:12 +00:00
|
|
|
|
2012-08-28 06:45:22 +00:00
|
|
|
gst_vaapisink_ensure_rotation(sink, TRUE);
|
|
|
|
|
2013-01-05 16:55:47 +00:00
|
|
|
surface = gst_vaapi_video_meta_get_surface(meta);
|
2010-03-15 17:09:12 +00:00
|
|
|
if (!surface)
|
2012-11-20 13:28:55 +00:00
|
|
|
goto error;
|
2010-03-15 17:09:12 +00:00
|
|
|
|
2010-05-13 09:38:47 +00:00
|
|
|
GST_DEBUG("render surface %" GST_VAAPI_ID_FORMAT,
|
|
|
|
GST_VAAPI_ID_ARGS(gst_vaapi_surface_get_id(surface)));
|
|
|
|
|
2013-07-08 12:50:42 +00:00
|
|
|
if (!surface_rect)
|
|
|
|
surface_rect = (GstVaapiRectangle *)
|
|
|
|
gst_vaapi_video_meta_get_render_rect(meta);
|
|
|
|
|
|
|
|
if (surface_rect)
|
|
|
|
GST_DEBUG("render rect (%d,%d), size %ux%u",
|
|
|
|
surface_rect->x, surface_rect->y,
|
|
|
|
surface_rect->width, surface_rect->height);
|
|
|
|
|
2013-01-05 16:55:47 +00:00
|
|
|
flags = gst_vaapi_video_meta_get_render_flags(meta);
|
2010-03-15 17:09:12 +00:00
|
|
|
|
2013-03-21 15:32:43 +00:00
|
|
|
if (!gst_vaapi_apply_composition(surface, src_buffer))
|
2011-11-23 19:45:46 +00:00
|
|
|
GST_WARNING("could not update subtitles");
|
|
|
|
|
2012-07-23 15:49:08 +00:00
|
|
|
switch (sink->display_type) {
|
2012-08-01 13:46:35 +00:00
|
|
|
#if USE_DRM
|
|
|
|
case GST_VAAPI_DISPLAY_TYPE_DRM:
|
|
|
|
success = TRUE;
|
|
|
|
break;
|
|
|
|
#endif
|
2013-06-27 11:53:46 +00:00
|
|
|
#if USE_GLX
|
|
|
|
case GST_VAAPI_DISPLAY_TYPE_GLX:
|
|
|
|
if (!sink->use_glx)
|
|
|
|
goto put_surface_x11;
|
2013-07-08 12:50:42 +00:00
|
|
|
success = gst_vaapisink_show_frame_glx(sink, surface, surface_rect,
|
|
|
|
flags);
|
2013-06-27 11:53:46 +00:00
|
|
|
break;
|
|
|
|
#endif
|
2012-07-24 13:07:48 +00:00
|
|
|
#if USE_X11
|
2012-07-23 15:49:08 +00:00
|
|
|
case GST_VAAPI_DISPLAY_TYPE_X11:
|
2013-06-27 11:53:46 +00:00
|
|
|
put_surface_x11:
|
2013-07-08 12:50:42 +00:00
|
|
|
success = gst_vaapisink_put_surface(sink, surface, surface_rect, flags);
|
2012-07-23 15:49:08 +00:00
|
|
|
break;
|
2012-07-24 13:07:48 +00:00
|
|
|
#endif
|
2012-07-24 07:45:25 +00:00
|
|
|
#if USE_WAYLAND
|
|
|
|
case GST_VAAPI_DISPLAY_TYPE_WAYLAND:
|
2013-07-08 12:50:42 +00:00
|
|
|
success = gst_vaapisink_put_surface(sink, surface, surface_rect, flags);
|
2012-07-24 07:45:25 +00:00
|
|
|
break;
|
|
|
|
#endif
|
2012-07-23 15:49:08 +00:00
|
|
|
default:
|
|
|
|
GST_ERROR("unsupported display type %d", sink->display_type);
|
|
|
|
success = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
2012-08-24 13:30:33 +00:00
|
|
|
if (!success)
|
2012-11-20 13:28:55 +00:00
|
|
|
goto error;
|
2012-08-24 13:30:33 +00:00
|
|
|
|
|
|
|
/* Retain VA surface until the next one is displayed */
|
2012-08-27 15:34:27 +00:00
|
|
|
if (sink->use_overlay)
|
|
|
|
gst_buffer_replace(&sink->video_buffer, buffer);
|
2012-11-20 13:28:55 +00:00
|
|
|
gst_buffer_unref(buffer);
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
|
|
|
|
error:
|
|
|
|
gst_buffer_unref(buffer);
|
2012-09-03 11:00:25 +00:00
|
|
|
return GST_FLOW_EOS;
|
2012-11-20 13:28:55 +00:00
|
|
|
}
|
|
|
|
|
2012-11-08 14:41:22 +00:00
|
|
|
#if GST_CHECK_VERSION(1,0,0)
|
|
|
|
static gboolean
|
|
|
|
gst_vaapisink_propose_allocation(GstBaseSink *base_sink, GstQuery *query)
|
|
|
|
{
|
|
|
|
GstVaapiSink * const sink = GST_VAAPISINK(base_sink);
|
|
|
|
GstCaps *caps = NULL;
|
|
|
|
gboolean need_pool;
|
|
|
|
|
|
|
|
gst_query_parse_allocation(query, &caps, &need_pool);
|
|
|
|
|
|
|
|
if (need_pool) {
|
|
|
|
if (!caps)
|
|
|
|
goto error_no_caps;
|
|
|
|
if (!gst_vaapisink_ensure_video_buffer_pool(sink, caps))
|
|
|
|
return FALSE;
|
|
|
|
gst_query_add_allocation_pool(query, sink->video_buffer_pool,
|
|
|
|
sink->video_buffer_size, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_query_add_allocation_meta(query,
|
|
|
|
GST_VAAPI_VIDEO_META_API_TYPE, NULL);
|
|
|
|
gst_query_add_allocation_meta(query,
|
|
|
|
GST_VIDEO_META_API_TYPE, NULL);
|
2013-07-08 12:50:42 +00:00
|
|
|
gst_query_add_allocation_meta(query,
|
|
|
|
GST_VIDEO_CROP_META_API_TYPE, NULL);
|
2012-11-08 14:41:22 +00:00
|
|
|
gst_query_add_allocation_meta(query,
|
|
|
|
GST_VIDEO_OVERLAY_COMPOSITION_META_API_TYPE, NULL);
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
error_no_caps:
|
|
|
|
{
|
|
|
|
GST_ERROR("no caps specified");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
2012-11-20 13:28:55 +00:00
|
|
|
static GstFlowReturn
|
|
|
|
gst_vaapisink_buffer_alloc(
|
|
|
|
GstBaseSink *base_sink,
|
|
|
|
guint64 offset,
|
|
|
|
guint size,
|
|
|
|
GstCaps *caps,
|
|
|
|
GstBuffer **pbuf
|
|
|
|
)
|
|
|
|
{
|
|
|
|
GstVaapiSink * const sink = GST_VAAPISINK(base_sink);
|
2013-04-03 13:58:57 +00:00
|
|
|
GstVideoInfo vi;
|
2012-11-20 13:28:55 +00:00
|
|
|
GstBuffer *buf;
|
|
|
|
|
|
|
|
*pbuf = NULL;
|
|
|
|
|
2013-04-03 13:58:57 +00:00
|
|
|
if (!sink->use_video_raw) {
|
|
|
|
/* Note: this code path is rarely used but for raw YUV formats
|
|
|
|
from custom pipeline. Otherwise, GstBaseSink::set_caps() is
|
|
|
|
called first, and GstBaseSink::buffer_alloc() is not called
|
|
|
|
in VA surface format mode */
|
|
|
|
if (!gst_video_info_from_caps(&vi, caps))
|
|
|
|
return GST_FLOW_NOT_SUPPORTED;
|
|
|
|
if (!GST_VIDEO_INFO_IS_YUV(&vi))
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
2012-11-20 13:28:55 +00:00
|
|
|
|
|
|
|
if (!gst_vaapi_uploader_ensure_display(sink->uploader, sink->display))
|
|
|
|
return GST_FLOW_NOT_SUPPORTED;
|
|
|
|
if (!gst_vaapi_uploader_ensure_caps(sink->uploader, caps, NULL))
|
|
|
|
return GST_FLOW_NOT_SUPPORTED;
|
|
|
|
|
|
|
|
buf = gst_vaapi_uploader_get_buffer(sink->uploader);
|
|
|
|
if (!buf) {
|
|
|
|
GST_WARNING("failed to allocate resources for raw YUV buffer");
|
|
|
|
return GST_FLOW_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
*pbuf = buf;
|
2012-08-24 13:30:33 +00:00
|
|
|
return GST_FLOW_OK;
|
2010-03-15 17:09:12 +00:00
|
|
|
}
|
2012-09-03 11:00:25 +00:00
|
|
|
#endif
|
2010-03-15 17:09:12 +00:00
|
|
|
|
2013-07-12 16:58:57 +00:00
|
|
|
#if GST_CHECK_VERSION(1,1,0)
|
|
|
|
static void
|
|
|
|
gst_vaapisink_set_context(GstElement *element, GstContext *context)
|
|
|
|
{
|
|
|
|
GstVaapiSink * const sink = GST_VAAPISINK(element);
|
|
|
|
GstVaapiDisplay *display = NULL;
|
|
|
|
|
|
|
|
if (gst_vaapi_video_context_get_display(context, &display)) {
|
|
|
|
GST_INFO_OBJECT(element, "set display %p", display);
|
|
|
|
gst_vaapi_display_replace(&sink->display, display);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-11-04 20:50:15 +00:00
|
|
|
static gboolean
|
|
|
|
gst_vaapisink_query(GstBaseSink *base_sink, GstQuery *query)
|
|
|
|
{
|
2013-03-26 17:57:00 +00:00
|
|
|
GstVaapiSink * const sink = GST_VAAPISINK(base_sink);
|
|
|
|
|
2013-07-12 16:58:57 +00:00
|
|
|
GST_INFO_OBJECT(sink, "query type %s", GST_QUERY_TYPE_NAME(query));
|
|
|
|
|
2013-03-26 17:57:00 +00:00
|
|
|
if (gst_vaapi_reply_to_query(query, sink->display)) {
|
|
|
|
GST_DEBUG("sharing display %p", sink->display);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2013-07-12 16:58:57 +00:00
|
|
|
|
|
|
|
switch(GST_QUERY_TYPE(query)) {
|
|
|
|
#if GST_CHECK_VERSION(1,1,0)
|
|
|
|
case GST_QUERY_CONTEXT: {
|
|
|
|
const gchar *context_type = NULL;
|
|
|
|
|
|
|
|
if (gst_query_parse_context_type(query, &context_type) &&
|
|
|
|
!g_strcmp0(context_type, GST_VAAPI_DISPLAY_CONTEXT_TYPE_NAME) &&
|
|
|
|
sink->display) {
|
|
|
|
GstContext *context;
|
|
|
|
|
|
|
|
context = gst_vaapi_video_context_new_with_display(
|
|
|
|
sink->display, FALSE);
|
|
|
|
gst_query_set_context(query, context);
|
|
|
|
gst_context_unref(context);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
// fall-through
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-03-26 17:57:00 +00:00
|
|
|
return GST_BASE_SINK_CLASS(gst_vaapisink_parent_class)->query(base_sink,
|
|
|
|
query);
|
2011-11-04 20:50:15 +00:00
|
|
|
}
|
|
|
|
|
2010-03-12 23:53:48 +00:00
|
|
|
static void
|
|
|
|
gst_vaapisink_finalize(GObject *object)
|
|
|
|
{
|
|
|
|
gst_vaapisink_destroy(GST_VAAPISINK(object));
|
|
|
|
|
2012-06-30 17:58:36 +00:00
|
|
|
G_OBJECT_CLASS(gst_vaapisink_parent_class)->finalize(object);
|
2010-03-12 23:53:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapisink_set_property(
|
|
|
|
GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec
|
|
|
|
)
|
|
|
|
{
|
|
|
|
GstVaapiSink * const sink = GST_VAAPISINK(object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
2012-07-23 15:49:08 +00:00
|
|
|
case PROP_DISPLAY_TYPE:
|
|
|
|
sink->display_type = g_value_get_enum(value);
|
2010-03-29 14:13:26 +00:00
|
|
|
break;
|
2010-03-22 12:03:26 +00:00
|
|
|
case PROP_FULLSCREEN:
|
|
|
|
sink->fullscreen = g_value_get_boolean(value);
|
|
|
|
break;
|
2010-03-26 11:30:54 +00:00
|
|
|
case PROP_SYNCHRONOUS:
|
|
|
|
sink->synchronous = g_value_get_boolean(value);
|
|
|
|
break;
|
2013-06-27 11:53:46 +00:00
|
|
|
case PROP_USE_GLX:
|
|
|
|
sink->use_glx = g_value_get_boolean(value);
|
|
|
|
break;
|
2010-03-29 15:59:44 +00:00
|
|
|
case PROP_USE_REFLECTION:
|
|
|
|
sink->use_reflection = g_value_get_boolean(value);
|
|
|
|
break;
|
2012-08-28 06:45:22 +00:00
|
|
|
case PROP_ROTATION:
|
|
|
|
sink->rotation_req = g_value_get_enum(value);
|
|
|
|
break;
|
2013-08-16 15:58:58 +00:00
|
|
|
case PROP_FORCE_ASPECT_RATIO:
|
|
|
|
sink->keep_aspect = g_value_get_boolean(value);
|
|
|
|
break;
|
2010-03-12 23:53:48 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapisink_get_property(
|
|
|
|
GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec
|
|
|
|
)
|
|
|
|
{
|
|
|
|
GstVaapiSink * const sink = GST_VAAPISINK(object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
2012-07-23 15:49:08 +00:00
|
|
|
case PROP_DISPLAY_TYPE:
|
|
|
|
g_value_set_enum(value, sink->display_type);
|
2010-03-29 14:13:26 +00:00
|
|
|
break;
|
2010-03-22 12:03:26 +00:00
|
|
|
case PROP_FULLSCREEN:
|
|
|
|
g_value_set_boolean(value, sink->fullscreen);
|
|
|
|
break;
|
2010-03-26 11:30:54 +00:00
|
|
|
case PROP_SYNCHRONOUS:
|
|
|
|
g_value_set_boolean(value, sink->synchronous);
|
|
|
|
break;
|
2013-06-27 11:53:46 +00:00
|
|
|
case PROP_USE_GLX:
|
|
|
|
g_value_set_boolean(value, sink->use_glx);
|
|
|
|
break;
|
2010-03-29 15:59:44 +00:00
|
|
|
case PROP_USE_REFLECTION:
|
|
|
|
g_value_set_boolean(value, sink->use_reflection);
|
|
|
|
break;
|
2012-08-28 06:45:22 +00:00
|
|
|
case PROP_ROTATION:
|
|
|
|
g_value_set_enum(value, sink->rotation);
|
|
|
|
break;
|
2013-08-16 15:58:58 +00:00
|
|
|
case PROP_FORCE_ASPECT_RATIO:
|
|
|
|
g_value_set_boolean(value, sink->keep_aspect);
|
|
|
|
break;
|
2010-03-12 23:53:48 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-03-05 17:11:52 +00:00
|
|
|
|
2010-05-12 09:34:37 +00:00
|
|
|
static void
|
|
|
|
gst_vaapisink_class_init(GstVaapiSinkClass *klass)
|
2010-03-05 17:11:52 +00:00
|
|
|
{
|
2010-04-29 21:59:14 +00:00
|
|
|
GObjectClass * const object_class = G_OBJECT_CLASS(klass);
|
2012-06-30 17:58:36 +00:00
|
|
|
GstElementClass * const element_class = GST_ELEMENT_CLASS(klass);
|
2010-04-29 21:59:14 +00:00
|
|
|
GstBaseSinkClass * const basesink_class = GST_BASE_SINK_CLASS(klass);
|
2012-06-30 17:58:36 +00:00
|
|
|
GstPadTemplate *pad_template;
|
2010-04-29 21:59:14 +00:00
|
|
|
|
2011-09-14 19:12:41 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT(gst_debug_vaapisink,
|
|
|
|
GST_PLUGIN_NAME, 0, GST_PLUGIN_DESC);
|
|
|
|
|
2010-04-29 21:59:14 +00:00
|
|
|
object_class->finalize = gst_vaapisink_finalize;
|
|
|
|
object_class->set_property = gst_vaapisink_set_property;
|
|
|
|
object_class->get_property = gst_vaapisink_get_property;
|
|
|
|
|
|
|
|
basesink_class->start = gst_vaapisink_start;
|
|
|
|
basesink_class->stop = gst_vaapisink_stop;
|
2012-11-20 14:50:56 +00:00
|
|
|
basesink_class->get_caps = gst_vaapisink_get_caps;
|
2010-04-29 21:59:14 +00:00
|
|
|
basesink_class->set_caps = gst_vaapisink_set_caps;
|
|
|
|
basesink_class->preroll = gst_vaapisink_show_frame;
|
|
|
|
basesink_class->render = gst_vaapisink_show_frame;
|
2011-11-04 20:50:15 +00:00
|
|
|
basesink_class->query = gst_vaapisink_query;
|
2012-11-08 14:41:22 +00:00
|
|
|
#if GST_CHECK_VERSION(1,0,0)
|
|
|
|
basesink_class->propose_allocation = gst_vaapisink_propose_allocation;
|
|
|
|
#else
|
2012-11-20 13:28:55 +00:00
|
|
|
basesink_class->buffer_alloc = gst_vaapisink_buffer_alloc;
|
2012-09-03 11:00:25 +00:00
|
|
|
#endif
|
2010-03-15 17:09:12 +00:00
|
|
|
|
2013-07-12 16:58:57 +00:00
|
|
|
#if GST_CHECK_VERSION(1,1,0)
|
|
|
|
element_class->set_context = gst_vaapisink_set_context;
|
|
|
|
#endif
|
|
|
|
|
2013-03-20 17:41:40 +00:00
|
|
|
gst_element_class_set_static_metadata(element_class,
|
|
|
|
"VA-API sink",
|
|
|
|
"Sink/Video",
|
|
|
|
GST_PLUGIN_DESC,
|
|
|
|
"Gwenole Beauchesne <gwenole.beauchesne@intel.com>");
|
2012-06-30 17:58:36 +00:00
|
|
|
|
|
|
|
pad_template = gst_static_pad_template_get(&gst_vaapisink_sink_factory);
|
|
|
|
gst_element_class_add_pad_template(element_class, pad_template);
|
|
|
|
|
2010-03-29 14:13:26 +00:00
|
|
|
g_object_class_install_property
|
|
|
|
(object_class,
|
2012-07-23 15:49:08 +00:00
|
|
|
PROP_DISPLAY_TYPE,
|
|
|
|
g_param_spec_enum("display",
|
|
|
|
"display type",
|
|
|
|
"display type to use",
|
|
|
|
GST_VAAPI_TYPE_DISPLAY_TYPE,
|
2012-07-25 07:16:02 +00:00
|
|
|
GST_VAAPI_DISPLAY_TYPE_ANY,
|
2012-07-23 15:49:08 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
|
|
|
|
|
|
|
#if USE_GLX
|
2013-06-27 11:53:46 +00:00
|
|
|
g_object_class_install_property
|
|
|
|
(object_class,
|
|
|
|
PROP_USE_GLX,
|
|
|
|
g_param_spec_boolean("use-glx",
|
|
|
|
"OpenGL rendering",
|
|
|
|
"Enables OpenGL rendering",
|
|
|
|
FALSE,
|
|
|
|
G_PARAM_READWRITE));
|
|
|
|
|
2010-03-29 15:59:44 +00:00
|
|
|
g_object_class_install_property
|
|
|
|
(object_class,
|
|
|
|
PROP_USE_REFLECTION,
|
|
|
|
g_param_spec_boolean("use-reflection",
|
|
|
|
"Reflection effect",
|
|
|
|
"Enables OpenGL reflection effect",
|
|
|
|
FALSE,
|
|
|
|
G_PARAM_READWRITE));
|
2010-03-29 14:13:26 +00:00
|
|
|
#endif
|
|
|
|
|
2010-03-22 12:03:26 +00:00
|
|
|
g_object_class_install_property
|
|
|
|
(object_class,
|
|
|
|
PROP_FULLSCREEN,
|
|
|
|
g_param_spec_boolean("fullscreen",
|
|
|
|
"Fullscreen",
|
|
|
|
"Requests window in fullscreen state",
|
|
|
|
FALSE,
|
|
|
|
G_PARAM_READWRITE));
|
2010-03-26 11:30:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GstVaapiSink:synchronous:
|
|
|
|
*
|
|
|
|
* When enabled, runs the X display in synchronous mode. Note that
|
|
|
|
* this is used only for debugging.
|
|
|
|
*/
|
|
|
|
g_object_class_install_property
|
|
|
|
(object_class,
|
|
|
|
PROP_SYNCHRONOUS,
|
|
|
|
g_param_spec_boolean("synchronous",
|
|
|
|
"Synchronous mode",
|
|
|
|
"Toggles X display synchronous mode",
|
|
|
|
FALSE,
|
|
|
|
G_PARAM_READWRITE));
|
2012-08-28 06:45:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GstVaapiSink:rotation:
|
|
|
|
*
|
|
|
|
* The VA display rotation mode, expressed as a #GstVaapiRotation.
|
|
|
|
*/
|
|
|
|
g_object_class_install_property
|
|
|
|
(object_class,
|
|
|
|
PROP_ROTATION,
|
|
|
|
g_param_spec_enum(GST_VAAPI_DISPLAY_PROP_ROTATION,
|
|
|
|
"rotation",
|
|
|
|
"The display rotation mode",
|
|
|
|
GST_VAAPI_TYPE_ROTATION,
|
|
|
|
DEFAULT_ROTATION,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2013-08-16 15:58:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GstVaapiSink:force-aspect-ratio:
|
|
|
|
*
|
|
|
|
* When enabled, scaling respects video aspect ratio; when disabled, the
|
|
|
|
* video is distorted to fit the window.
|
|
|
|
*/
|
|
|
|
g_object_class_install_property
|
|
|
|
(object_class,
|
|
|
|
PROP_FORCE_ASPECT_RATIO,
|
|
|
|
g_param_spec_boolean("force-aspect-ratio",
|
|
|
|
"Force aspect ratio",
|
|
|
|
"When enabled, scaling will respect original aspect ratio",
|
|
|
|
TRUE,
|
|
|
|
G_PARAM_READWRITE));
|
2010-03-05 17:11:52 +00:00
|
|
|
}
|
|
|
|
|
2010-05-12 09:34:37 +00:00
|
|
|
static void
|
2012-06-30 17:58:36 +00:00
|
|
|
gst_vaapisink_init(GstVaapiSink *sink)
|
2010-03-05 17:11:52 +00:00
|
|
|
{
|
2012-02-07 14:21:05 +00:00
|
|
|
sink->caps = NULL;
|
2010-03-29 15:59:44 +00:00
|
|
|
sink->display = NULL;
|
|
|
|
sink->window = NULL;
|
2010-03-29 16:17:38 +00:00
|
|
|
sink->window_width = 0;
|
|
|
|
sink->window_height = 0;
|
2010-03-29 15:59:44 +00:00
|
|
|
sink->texture = NULL;
|
2012-08-24 13:30:33 +00:00
|
|
|
sink->video_buffer = NULL;
|
2010-03-29 15:59:44 +00:00
|
|
|
sink->video_width = 0;
|
|
|
|
sink->video_height = 0;
|
2010-05-12 12:58:53 +00:00
|
|
|
sink->video_par_n = 1;
|
|
|
|
sink->video_par_d = 1;
|
2010-05-18 11:22:54 +00:00
|
|
|
sink->foreign_window = FALSE;
|
2010-03-29 15:59:44 +00:00
|
|
|
sink->fullscreen = FALSE;
|
|
|
|
sink->synchronous = FALSE;
|
2012-07-23 15:49:08 +00:00
|
|
|
sink->display_type = DEFAULT_DISPLAY_TYPE;
|
2012-08-28 06:45:22 +00:00
|
|
|
sink->rotation = DEFAULT_ROTATION;
|
|
|
|
sink->rotation_req = DEFAULT_ROTATION;
|
2010-03-29 15:59:44 +00:00
|
|
|
sink->use_reflection = FALSE;
|
2012-08-27 15:34:27 +00:00
|
|
|
sink->use_overlay = FALSE;
|
2012-08-28 06:45:22 +00:00
|
|
|
sink->use_rotation = FALSE;
|
2013-08-16 15:58:58 +00:00
|
|
|
sink->keep_aspect = TRUE;
|
2013-08-29 16:34:57 +00:00
|
|
|
gst_video_info_init(&sink->video_info);
|
2010-03-12 23:53:48 +00:00
|
|
|
}
|