gstreamer/gst-libs/gst/vaapi/gstvaapiwindow.c

512 lines
13 KiB
C
Raw Normal View History

2010-03-15 15:12:27 +00:00
/*
* gstvaapiwindow.c - VA window abstraction
*
* Copyright (C) 2010-2011 Splitted-Desktop Systems
* Author: Gwenole Beauchesne <gwenole.beauchesne@splitted-desktop.com>
2013-11-22 05:37:12 +00:00
* Copyright (C) 2011-2013 Intel Corporation
* Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
2010-03-15 15:12:27 +00:00
*
2011-06-14 11:51:41 +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-15 15:12:27 +00:00
*
2011-06-14 11:51:41 +00:00
* This library is distributed in the hope that it will be useful,
2010-03-15 15:12:27 +00:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2011-06-14 11:51:41 +00:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
2010-03-15 15:12:27 +00:00
*
2011-06-14 11:51:41 +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-15 15:12:27 +00:00
*/
2010-03-19 15:45:21 +00:00
/**
2010-03-24 08:16:32 +00:00
* SECTION:gstvaapiwindow
* @short_description: VA window abstraction
2010-03-19 15:45:21 +00:00
*/
#include "sysdeps.h"
2010-03-15 15:12:27 +00:00
#include "gstvaapiwindow.h"
#include "gstvaapiwindow_priv.h"
#include "gstvaapidisplay_priv.h"
#include "gstvaapisurface_priv.h"
2010-03-15 15:12:27 +00:00
#define DEBUG 1
#include "gstvaapidebug.h"
2010-03-15 15:12:27 +00:00
/* Ensure those symbols are actually defined in the resulting libraries */
#undef gst_vaapi_window_ref
#undef gst_vaapi_window_unref
#undef gst_vaapi_window_replace
2010-03-15 15:12:27 +00:00
static void
gst_vaapi_window_ensure_size (GstVaapiWindow * window)
{
const GstVaapiWindowClass *const klass = GST_VAAPI_WINDOW_GET_CLASS (window);
if (!window->check_geometry)
return;
if (klass->get_geometry)
klass->get_geometry (window, NULL, NULL, &window->width, &window->height);
window->check_geometry = FALSE;
window->is_fullscreen = (window->width == window->display_width &&
window->height == window->display_height);
2010-03-15 15:12:27 +00:00
}
static gboolean
gst_vaapi_window_create (GstVaapiWindow * window, guint width, guint height)
2010-03-15 15:12:27 +00:00
{
gst_vaapi_display_get_size (GST_VAAPI_OBJECT_DISPLAY (window),
&window->display_width, &window->display_height);
if (!GST_VAAPI_WINDOW_GET_CLASS (window)->create (window, &width, &height))
return FALSE;
if (width != window->width || height != window->height) {
GST_DEBUG ("backend resized window to %ux%u", width, height);
window->width = width;
window->height = height;
}
return TRUE;
2010-03-15 15:12:27 +00:00
}
GstVaapiWindow *
gst_vaapi_window_new_internal (const GstVaapiWindowClass * window_class,
GstVaapiDisplay * display, GstVaapiID id, guint width, guint height)
2010-03-15 15:12:27 +00:00
{
GstVaapiWindow *window;
2010-03-15 15:12:27 +00:00
if (id != GST_VAAPI_ID_INVALID) {
g_return_val_if_fail (width == 0, NULL);
g_return_val_if_fail (height == 0, NULL);
} else {
g_return_val_if_fail (width > 0, NULL);
g_return_val_if_fail (height > 0, NULL);
}
2010-03-15 15:12:27 +00:00
window = gst_vaapi_object_new (GST_VAAPI_OBJECT_CLASS (window_class),
display);
if (!window)
return NULL;
window->use_foreign_window = id != GST_VAAPI_ID_INVALID;
GST_VAAPI_OBJECT_ID (window) = window->use_foreign_window ? id : 0;
if (!gst_vaapi_window_create (window, width, height))
goto error;
return window;
error:
gst_vaapi_window_unref_internal (window);
return NULL;
2010-03-15 15:12:27 +00:00
}
/**
* gst_vaapi_window_new:
* @display: a #GstVaapiDisplay
* @width: the requested window width, in pixels
* @height: the requested windo height, in pixels
*
* Creates a window with the specified @width and @height. The window
* will be attached to the @display and remains invisible to the user
* until gst_vaapi_window_show() is called.
*
* Return value: the newly allocated #GstVaapiWindow object
*/
GstVaapiWindow *
gst_vaapi_window_new (GstVaapiDisplay * display, guint width, guint height)
2010-03-15 15:12:27 +00:00
{
GstVaapiDisplayClass *dpy_class;
g_return_val_if_fail (display != NULL, NULL);
dpy_class = GST_VAAPI_DISPLAY_GET_CLASS (display);
if (G_UNLIKELY (!dpy_class->create_window))
return NULL;
return dpy_class->create_window (display, GST_VAAPI_ID_INVALID, width, height);
2010-03-15 15:12:27 +00:00
}
/**
* gst_vaapi_window_ref:
* @window: a #GstVaapiWindow
*
* Atomically increases the reference count of the given @window by one.
*
* Returns: The same @window argument
*/
GstVaapiWindow *
gst_vaapi_window_ref (GstVaapiWindow * window)
2010-03-15 15:12:27 +00:00
{
return gst_vaapi_window_ref_internal (window);
2010-03-15 15:12:27 +00:00
}
/**
* gst_vaapi_window_unref:
* @window: a #GstVaapiWindow
*
* Atomically decreases the reference count of the @window by one. If
* the reference count reaches zero, the window will be free'd.
*/
void
gst_vaapi_window_unref (GstVaapiWindow * window)
2010-03-15 15:12:27 +00:00
{
gst_vaapi_window_unref_internal (window);
2010-03-15 15:12:27 +00:00
}
/**
* gst_vaapi_window_replace:
* @old_window_ptr: a pointer to a #GstVaapiWindow
* @new_window: a #GstVaapiWindow
*
* Atomically replaces the window window held in @old_window_ptr with
* @new_window. This means that @old_window_ptr shall reference a
* valid window. However, @new_window can be NULL.
*/
void
gst_vaapi_window_replace (GstVaapiWindow ** old_window_ptr,
GstVaapiWindow * new_window)
2010-03-15 15:12:27 +00:00
{
gst_vaapi_window_replace_internal (old_window_ptr, new_window);
2010-03-15 15:12:27 +00:00
}
/**
* gst_vaapi_window_get_display:
* @window: a #GstVaapiWindow
*
* Returns the #GstVaapiDisplay this @window is bound to.
*
* Return value: the parent #GstVaapiDisplay object
*/
GstVaapiDisplay *
gst_vaapi_window_get_display (GstVaapiWindow * window)
{
g_return_val_if_fail (window != NULL, NULL);
return GST_VAAPI_OBJECT_DISPLAY (window);
}
2010-03-19 15:45:21 +00:00
/**
* gst_vaapi_window_show:
* @window: a #GstVaapiWindow
*
* Flags a window to be displayed. Any window that is not shown will
* not appear on the screen.
*/
2010-03-15 15:12:27 +00:00
void
gst_vaapi_window_show (GstVaapiWindow * window)
2010-03-15 15:12:27 +00:00
{
g_return_if_fail (window != NULL);
2010-03-15 15:12:27 +00:00
GST_VAAPI_WINDOW_GET_CLASS (window)->show (window);
window->check_geometry = TRUE;
2010-03-15 15:12:27 +00:00
}
2010-03-19 15:45:21 +00:00
/**
* gst_vaapi_window_hide:
* @window: a #GstVaapiWindow
*
* Reverses the effects of gst_vaapi_window_show(), causing the window
* to be hidden (invisible to the user).
*/
2010-03-15 15:12:27 +00:00
void
gst_vaapi_window_hide (GstVaapiWindow * window)
2010-03-15 15:12:27 +00:00
{
g_return_if_fail (window != NULL);
2010-03-15 15:12:27 +00:00
GST_VAAPI_WINDOW_GET_CLASS (window)->hide (window);
2010-03-15 15:12:27 +00:00
}
/**
* gst_vaapi_window_get_fullscreen:
* @window: a #GstVaapiWindow
*
* Retrieves whether the @window is fullscreen or not
*
* Return value: %TRUE if the window is fullscreen
*/
gboolean
gst_vaapi_window_get_fullscreen (GstVaapiWindow * window)
{
g_return_val_if_fail (window != NULL, FALSE);
gst_vaapi_window_ensure_size (window);
return window->is_fullscreen;
}
/**
* gst_vaapi_window_set_fullscreen:
* @window: a #GstVaapiWindow
* @fullscreen: %TRUE to request window to get fullscreen
*
* Requests to place the @window in fullscreen or unfullscreen states.
*/
void
gst_vaapi_window_set_fullscreen (GstVaapiWindow * window, gboolean fullscreen)
{
const GstVaapiWindowClass *klass;
g_return_if_fail (window != NULL);
klass = GST_VAAPI_WINDOW_GET_CLASS (window);
if (window->is_fullscreen != fullscreen &&
klass->set_fullscreen && klass->set_fullscreen (window, fullscreen)) {
window->is_fullscreen = fullscreen;
window->check_geometry = TRUE;
}
}
2010-03-19 15:45:21 +00:00
/**
* gst_vaapi_window_get_width:
* @window: a #GstVaapiWindow
*
* Retrieves the width of a #GstVaapiWindow.
*
* Return value: the width of the @window, in pixels
*/
2010-03-15 15:12:27 +00:00
guint
gst_vaapi_window_get_width (GstVaapiWindow * window)
2010-03-15 15:12:27 +00:00
{
g_return_val_if_fail (window != NULL, 0);
2010-03-15 15:12:27 +00:00
gst_vaapi_window_ensure_size (window);
return window->width;
2010-03-15 15:12:27 +00:00
}
2010-03-19 15:45:21 +00:00
/**
* gst_vaapi_window_get_height:
* @window: a #GstVaapiWindow
*
* Retrieves the height of a #GstVaapiWindow
*
* Return value: the height of the @window, in pixels
*/
2010-03-15 15:12:27 +00:00
guint
gst_vaapi_window_get_height (GstVaapiWindow * window)
2010-03-15 15:12:27 +00:00
{
g_return_val_if_fail (window != NULL, 0);
2010-03-15 15:12:27 +00:00
gst_vaapi_window_ensure_size (window);
return window->height;
2010-03-15 15:12:27 +00:00
}
2010-03-19 15:45:21 +00:00
/**
* gst_vaapi_window_get_size:
* @window: a #GstVaapiWindow
* @width_ptr: return location for the width, or %NULL
* @height_ptr: return location for the height, or %NULL
2010-03-19 15:45:21 +00:00
*
* Retrieves the dimensions of a #GstVaapiWindow.
*/
2010-03-15 15:12:27 +00:00
void
gst_vaapi_window_get_size (GstVaapiWindow * window, guint * width_ptr,
guint * height_ptr)
2010-03-15 15:12:27 +00:00
{
g_return_if_fail (window != NULL);
2010-03-15 15:12:27 +00:00
gst_vaapi_window_ensure_size (window);
if (width_ptr)
*width_ptr = window->width;
2010-03-15 15:12:27 +00:00
if (height_ptr)
*height_ptr = window->height;
2010-03-15 15:12:27 +00:00
}
2010-03-19 15:45:21 +00:00
/**
* gst_vaapi_window_set_width:
* @window: a #GstVaapiWindow
* @width: requested new width for the window, in pixels
*
* Resizes the @window to match the specified @width.
*/
2010-03-15 15:12:27 +00:00
void
gst_vaapi_window_set_width (GstVaapiWindow * window, guint width)
2010-03-15 15:12:27 +00:00
{
g_return_if_fail (window != NULL);
2010-03-15 15:12:27 +00:00
gst_vaapi_window_set_size (window, width, window->height);
2010-03-15 15:12:27 +00:00
}
2010-03-19 15:45:21 +00:00
/**
* gst_vaapi_window_set_height:
* @window: a #GstVaapiWindow
* @height: requested new height for the window, in pixels
*
* Resizes the @window to match the specified @height.
*/
2010-03-15 15:12:27 +00:00
void
gst_vaapi_window_set_height (GstVaapiWindow * window, guint height)
2010-03-15 15:12:27 +00:00
{
g_return_if_fail (window != NULL);
2010-03-15 15:12:27 +00:00
gst_vaapi_window_set_size (window, window->width, height);
2010-03-15 15:12:27 +00:00
}
2010-03-19 15:45:21 +00:00
/**
* gst_vaapi_window_set_size:
* @window: a #GstVaapiWindow
* @width: requested new width for the window, in pixels
* @height: requested new height for the window, in pixels
*
* Resizes the @window to match the specified @width and @height.
*/
2010-03-15 15:12:27 +00:00
void
gst_vaapi_window_set_size (GstVaapiWindow * window, guint width, guint height)
2010-03-15 15:12:27 +00:00
{
g_return_if_fail (window != NULL);
2010-03-15 15:12:27 +00:00
if (width == window->width && height == window->height)
return;
2010-03-15 15:12:27 +00:00
if (!GST_VAAPI_WINDOW_GET_CLASS (window)->resize (window, width, height))
return;
window->width = width;
window->height = height;
2010-03-15 15:12:27 +00:00
}
static inline void
get_surface_rect (GstVaapiSurface * surface, GstVaapiRectangle * rect)
2010-03-15 15:12:27 +00:00
{
rect->x = 0;
rect->y = 0;
rect->width = GST_VAAPI_SURFACE_WIDTH (surface);
rect->height = GST_VAAPI_SURFACE_HEIGHT (surface);
2010-03-15 15:12:27 +00:00
}
static inline void
get_window_rect (GstVaapiWindow * window, GstVaapiRectangle * rect)
2010-03-15 15:12:27 +00:00
{
guint width, height;
2010-03-15 15:12:27 +00:00
gst_vaapi_window_get_size (window, &width, &height);
rect->x = 0;
rect->y = 0;
rect->width = width;
rect->height = height;
2010-03-15 15:12:27 +00:00
}
2010-03-19 15:45:21 +00:00
/**
* gst_vaapi_window_put_surface:
* @window: a #GstVaapiWindow
* @surface: a #GstVaapiSurface
* @src_rect: the sub-rectangle of the source surface to
2010-03-19 15:45:21 +00:00
* extract and process. If %NULL, the entire surface will be used.
* @dst_rect: the sub-rectangle of the destination
2010-03-19 15:45:21 +00:00
* window into which the surface is rendered. If %NULL, the entire
* window will be used.
* @flags: postprocessing flags. See #GstVaapiSurfaceRenderFlags
*
* Renders the @surface region specified by @src_rect into the @window
* region specified by @dst_rect. The @flags specify how de-interlacing
* (if needed), color space conversion, scaling and other postprocessing
* transformations are performed.
*
* Return value: %TRUE on success
*/
2010-03-15 15:12:27 +00:00
gboolean
gst_vaapi_window_put_surface (GstVaapiWindow * window,
GstVaapiSurface * surface,
const GstVaapiRectangle * src_rect,
const GstVaapiRectangle * dst_rect, guint flags)
2010-03-15 15:12:27 +00:00
{
const GstVaapiWindowClass *klass;
GstVaapiRectangle src_rect_default, dst_rect_default;
2010-03-15 15:12:27 +00:00
g_return_val_if_fail (window != NULL, FALSE);
g_return_val_if_fail (surface != NULL, FALSE);
2010-03-15 15:12:27 +00:00
klass = GST_VAAPI_WINDOW_GET_CLASS (window);
if (!klass->render)
return FALSE;
if (!src_rect) {
src_rect = &src_rect_default;
get_surface_rect (surface, &src_rect_default);
}
2010-03-15 15:12:27 +00:00
if (!dst_rect) {
dst_rect = &dst_rect_default;
get_window_rect (window, &dst_rect_default);
}
2010-03-15 15:12:27 +00:00
return klass->render (window, surface, src_rect, dst_rect, flags);
2010-03-15 15:12:27 +00:00
}
static inline void
get_pixmap_rect (GstVaapiPixmap * pixmap, GstVaapiRectangle * rect)
{
guint width, height;
gst_vaapi_pixmap_get_size (pixmap, &width, &height);
rect->x = 0;
rect->y = 0;
rect->width = width;
rect->height = height;
}
/**
* gst_vaapi_window_put_pixmap:
* @window: a #GstVaapiWindow
* @pixmap: a #GstVaapiPixmap
* @src_rect: the sub-rectangle of the source pixmap to
* extract and process. If %NULL, the entire pixmap will be used.
* @dst_rect: the sub-rectangle of the destination
* window into which the pixmap is rendered. If %NULL, the entire
* window will be used.
*
* Renders the @pixmap region specified by @src_rect into the @window
* region specified by @dst_rect.
*
* Return value: %TRUE on success
*/
gboolean
gst_vaapi_window_put_pixmap (GstVaapiWindow * window,
GstVaapiPixmap * pixmap,
const GstVaapiRectangle * src_rect, const GstVaapiRectangle * dst_rect)
{
const GstVaapiWindowClass *klass;
GstVaapiRectangle src_rect_default, dst_rect_default;
g_return_val_if_fail (window != NULL, FALSE);
g_return_val_if_fail (pixmap != NULL, FALSE);
klass = GST_VAAPI_WINDOW_GET_CLASS (window);
if (!klass->render_pixmap)
return FALSE;
if (!src_rect) {
src_rect = &src_rect_default;
get_pixmap_rect (pixmap, &src_rect_default);
}
if (!dst_rect) {
dst_rect = &dst_rect_default;
get_window_rect (window, &dst_rect_default);
}
return klass->render_pixmap (window, pixmap, src_rect, dst_rect);
}
/**
* gst_vaapi_window_reconfigure:
* @window: a #GstVaapiWindow
*
* Updates internal window size from geometry of the underlying window
* implementation if necessary.
*/
void
gst_vaapi_window_reconfigure (GstVaapiWindow * window)
{
g_return_if_fail (window != NULL);
window->check_geometry = TRUE;
gst_vaapi_window_ensure_size (window);
}