2010-03-04 17:39:58 +00:00
|
|
|
/*
|
|
|
|
* gstvaapisubpicture.h - VA subpicture abstraction
|
|
|
|
*
|
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>
|
2013-01-29 13:14:45 +00:00
|
|
|
* Copyright (C) 2011-2013 Intel Corporation
|
2013-11-22 04:57:18 +00:00
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
|
2010-03-04 17:39:58 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +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-04 17:39:58 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2010-03-04 17:39:58 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2010-05-03 07:07:27 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2010-03-04 17:39:58 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +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-04 17:39:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GST_VAAPI_SUBPICTURE_H
|
|
|
|
#define GST_VAAPI_SUBPICTURE_H
|
|
|
|
|
2010-03-23 16:21:28 +00:00
|
|
|
#include <gst/vaapi/gstvaapiobject.h>
|
2010-03-04 17:39:58 +00:00
|
|
|
#include <gst/vaapi/gstvaapidisplay.h>
|
|
|
|
#include <gst/vaapi/gstvaapiimage.h>
|
2011-12-14 12:16:21 +00:00
|
|
|
#include <gst/video/video-overlay-composition.h>
|
2010-03-04 17:39:58 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2013-04-30 15:22:15 +00:00
|
|
|
#define GST_VAAPI_SUBPICTURE(obj) \
|
|
|
|
((GstVaapiSubpicture *)(obj))
|
2010-03-04 17:39:58 +00:00
|
|
|
|
|
|
|
typedef struct _GstVaapiSubpicture GstVaapiSubpicture;
|
|
|
|
|
2013-01-04 08:41:25 +00:00
|
|
|
/**
|
|
|
|
* GstVaapiSubpictureFlags:
|
|
|
|
* @GST_VAAPI_SUBPICTURE_FLAG_PREMULTIPLIED_ALPHA:
|
|
|
|
* subpicture has RGB pixels with pre-multiplied alpha
|
|
|
|
* @GST_VAAPI_SUBPICTURE_FLAG_GLOBAL_ALPHA:
|
|
|
|
* subpicture needs to be blended with some global-alpha value at
|
|
|
|
* rendering time
|
|
|
|
*
|
|
|
|
* The set of all subpicture rendering flags for #GstVaapiSubpicture.
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
GST_VAAPI_SUBPICTURE_FLAG_PREMULTIPLIED_ALPHA = (1 << 0),
|
|
|
|
GST_VAAPI_SUBPICTURE_FLAG_GLOBAL_ALPHA = (1 << 1),
|
|
|
|
} GstVaapiSubpictureFlags;
|
|
|
|
|
2010-03-04 17:39:58 +00:00
|
|
|
GstVaapiSubpicture *
|
2012-05-15 08:24:08 +00:00
|
|
|
gst_vaapi_subpicture_new(GstVaapiImage *image, guint flags);
|
2010-03-04 17:39:58 +00:00
|
|
|
|
2011-12-14 12:16:21 +00:00
|
|
|
GstVaapiSubpicture *
|
|
|
|
gst_vaapi_subpicture_new_from_overlay_rectangle(
|
|
|
|
GstVaapiDisplay *display,
|
|
|
|
GstVideoOverlayRectangle *rect
|
|
|
|
);
|
|
|
|
|
2010-03-30 07:39:16 +00:00
|
|
|
GstVaapiID
|
2010-03-25 09:49:17 +00:00
|
|
|
gst_vaapi_subpicture_get_id(GstVaapiSubpicture *subpicture);
|
|
|
|
|
2012-05-15 08:24:08 +00:00
|
|
|
guint
|
|
|
|
gst_vaapi_subpicture_get_flags(GstVaapiSubpicture *subpicture);
|
|
|
|
|
2010-03-04 17:39:58 +00:00
|
|
|
GstVaapiImage *
|
|
|
|
gst_vaapi_subpicture_get_image(GstVaapiSubpicture *subpicture);
|
|
|
|
|
2013-04-30 15:22:15 +00:00
|
|
|
gboolean
|
|
|
|
gst_vaapi_subpicture_set_image(GstVaapiSubpicture *subpicture,
|
|
|
|
GstVaapiImage *image);
|
2010-03-04 17:39:58 +00:00
|
|
|
|
2012-05-15 08:24:08 +00:00
|
|
|
gfloat
|
|
|
|
gst_vaapi_subpicture_get_global_alpha(GstVaapiSubpicture *subpicture);
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_vaapi_subpicture_set_global_alpha(GstVaapiSubpicture *subpicture,
|
|
|
|
gfloat global_alpha);
|
|
|
|
|
2010-03-04 17:39:58 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* GST_VAAPI_SUBPICTURE_H */
|