2010-01-25 16:15:01 +00:00
|
|
|
/*
|
2010-03-16 09:15:48 +00:00
|
|
|
* gstvaapiutils.h - VA-API utilities
|
2010-01-25 16:15:01 +00:00
|
|
|
*
|
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-01-25 16:15:01 +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-01-25 16:15:01 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2010-01-25 16:15:01 +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-01-25 16:15:01 +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-01-25 16:15:01 +00:00
|
|
|
*/
|
|
|
|
|
2010-03-16 09:18:57 +00:00
|
|
|
#ifndef GST_VAAPI_UTILS_H
|
|
|
|
#define GST_VAAPI_UTILS_H
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2012-02-07 09:01:01 +00:00
|
|
|
#include <glib.h>
|
2012-07-20 09:45:15 +00:00
|
|
|
#include <va/va.h>
|
2010-03-24 16:17:49 +00:00
|
|
|
|
2017-01-11 15:04:24 +00:00
|
|
|
/** calls vaInitialize() redirecting the logging mechanism */
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
gboolean
|
|
|
|
vaapi_initialize (VADisplay dpy);
|
|
|
|
|
2010-01-25 16:15:01 +00:00
|
|
|
/** Check VA status for success or print out an error */
|
2012-07-19 15:55:00 +00:00
|
|
|
G_GNUC_INTERNAL
|
2010-03-30 12:55:27 +00:00
|
|
|
gboolean
|
2014-01-23 16:41:02 +00:00
|
|
|
vaapi_check_status (VAStatus status, const gchar *msg);
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2011-08-04 15:29:41 +00:00
|
|
|
/** Maps VA buffer */
|
2012-07-19 15:55:00 +00:00
|
|
|
G_GNUC_INTERNAL
|
2014-01-23 16:41:02 +00:00
|
|
|
gpointer
|
|
|
|
vaapi_map_buffer (VADisplay dpy, VABufferID buf_id);
|
2011-08-04 15:29:41 +00:00
|
|
|
|
|
|
|
/** Unmaps VA buffer */
|
2012-07-19 15:55:00 +00:00
|
|
|
G_GNUC_INTERNAL
|
2011-08-04 15:29:41 +00:00
|
|
|
void
|
2014-01-23 16:41:02 +00:00
|
|
|
vaapi_unmap_buffer (VADisplay dpy, VABufferID buf_id, void **pbuf);
|
2011-08-04 15:29:41 +00:00
|
|
|
|
|
|
|
/** Creates and maps VA buffer */
|
2012-07-19 15:55:00 +00:00
|
|
|
G_GNUC_INTERNAL
|
2012-01-30 09:15:32 +00:00
|
|
|
gboolean
|
2014-01-23 16:41:02 +00:00
|
|
|
vaapi_create_buffer (VADisplay dpy, VAContextID ctx, int type, guint size,
|
|
|
|
gconstpointer data, VABufferID * buf_id, gpointer * mapped_data);
|
2011-08-04 15:29:41 +00:00
|
|
|
|
|
|
|
/** Destroy VA buffer */
|
2012-07-19 15:55:00 +00:00
|
|
|
G_GNUC_INTERNAL
|
2011-08-04 15:29:41 +00:00
|
|
|
void
|
2014-01-23 16:41:02 +00:00
|
|
|
vaapi_destroy_buffer (VADisplay dpy, VABufferID * buf_id);
|
2011-08-04 15:29:41 +00:00
|
|
|
|
2010-01-25 16:15:01 +00:00
|
|
|
/** Return a string representation of a VAProfile */
|
2012-07-19 15:55:00 +00:00
|
|
|
G_GNUC_INTERNAL
|
2014-01-23 16:41:02 +00:00
|
|
|
const gchar *
|
|
|
|
string_of_VAProfile (VAProfile profile);
|
2010-01-25 16:15:01 +00:00
|
|
|
|
|
|
|
/** Return a string representation of a VAEntrypoint */
|
2012-07-19 15:55:00 +00:00
|
|
|
G_GNUC_INTERNAL
|
2014-01-23 16:41:02 +00:00
|
|
|
const gchar *
|
|
|
|
string_of_VAEntrypoint (VAEntrypoint entrypoint);
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2012-07-31 10:22:48 +00:00
|
|
|
/* Return a string representation of a VADisplayAttributeType */
|
|
|
|
G_GNUC_INTERNAL
|
2014-01-23 16:41:02 +00:00
|
|
|
const gchar *
|
|
|
|
string_of_VADisplayAttributeType (VADisplayAttribType attribute_type);
|
2012-07-31 10:22:48 +00:00
|
|
|
|
2014-05-10 04:23:29 +00:00
|
|
|
/* Return a string representation of a VA chroma format */
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
const gchar *
|
|
|
|
string_of_va_chroma_format (guint chroma_format);
|
|
|
|
|
2013-07-12 13:33:32 +00:00
|
|
|
G_GNUC_INTERNAL
|
2014-01-23 16:41:02 +00:00
|
|
|
const gchar *
|
|
|
|
string_of_VARateControl (guint rate_control);
|
2013-07-12 13:33:32 +00:00
|
|
|
|
2017-04-04 12:21:43 +00:00
|
|
|
G_GNUC_INTERNAL
|
|
|
|
guint
|
|
|
|
to_GstVaapiChromaType (guint va_rt_format);
|
|
|
|
|
2013-07-09 17:13:39 +00:00
|
|
|
G_GNUC_INTERNAL
|
|
|
|
guint
|
2014-01-23 16:41:02 +00:00
|
|
|
from_GstVaapiChromaType (guint chroma_type);
|
2013-07-09 17:13:39 +00:00
|
|
|
|
2013-01-04 08:41:25 +00:00
|
|
|
G_GNUC_INTERNAL
|
|
|
|
guint
|
2014-01-23 16:41:02 +00:00
|
|
|
from_GstVaapiSubpictureFlags (guint flags);
|
2013-01-04 08:41:25 +00:00
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
guint
|
2014-01-23 16:41:02 +00:00
|
|
|
to_GstVaapiSubpictureFlags (guint va_flags);
|
2013-01-04 08:41:25 +00:00
|
|
|
|
2012-05-15 08:24:08 +00:00
|
|
|
G_GNUC_INTERNAL
|
|
|
|
guint
|
2014-01-23 16:41:02 +00:00
|
|
|
from_GstVideoOverlayFormatFlags (guint ovl_flags);
|
2012-05-15 08:24:08 +00:00
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
guint
|
2014-01-23 16:41:02 +00:00
|
|
|
to_GstVideoOverlayFormatFlags (guint flags);
|
2012-05-15 08:24:08 +00:00
|
|
|
|
2012-07-19 15:55:00 +00:00
|
|
|
G_GNUC_INTERNAL
|
2010-03-30 12:55:27 +00:00
|
|
|
guint
|
2014-01-23 16:41:02 +00:00
|
|
|
from_GstVaapiSurfaceRenderFlags (guint flags);
|
2010-03-21 08:38:17 +00:00
|
|
|
|
2012-07-19 15:55:00 +00:00
|
|
|
G_GNUC_INTERNAL
|
2010-03-30 12:55:27 +00:00
|
|
|
guint
|
2014-01-23 16:41:02 +00:00
|
|
|
to_GstVaapiSurfaceStatus (guint va_flags);
|
2010-03-30 08:11:50 +00:00
|
|
|
|
2012-08-22 06:18:11 +00:00
|
|
|
G_GNUC_INTERNAL
|
|
|
|
guint
|
2014-01-23 16:41:02 +00:00
|
|
|
from_GstVaapiRotation (guint value);
|
2012-08-22 06:18:11 +00:00
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
guint
|
2014-01-23 16:41:02 +00:00
|
|
|
to_GstVaapiRotation (guint value);
|
2012-08-22 06:18:11 +00:00
|
|
|
|
2013-07-12 13:33:32 +00:00
|
|
|
G_GNUC_INTERNAL
|
|
|
|
guint
|
2014-01-23 16:41:02 +00:00
|
|
|
from_GstVaapiRateControl (guint value);
|
2013-07-12 13:33:32 +00:00
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
guint
|
2014-01-23 16:41:02 +00:00
|
|
|
to_GstVaapiRateControl (guint value);
|
2013-07-12 13:33:32 +00:00
|
|
|
|
2013-07-29 01:23:50 +00:00
|
|
|
G_GNUC_INTERNAL
|
|
|
|
guint
|
2014-01-23 16:41:02 +00:00
|
|
|
from_GstVaapiDeinterlaceMethod (guint value);
|
2013-07-29 01:23:50 +00:00
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
guint
|
2014-01-23 16:41:02 +00:00
|
|
|
from_GstVaapiDeinterlaceFlags (guint flags);
|
2013-07-29 01:23:50 +00:00
|
|
|
|
2014-10-29 15:57:12 +00:00
|
|
|
G_GNUC_INTERNAL
|
|
|
|
guint
|
|
|
|
from_GstVaapiScaleMethod (guint value);
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
guint
|
|
|
|
to_GstVaapiScaleMethod (guint flags);
|
|
|
|
|
2010-03-16 09:18:57 +00:00
|
|
|
#endif /* GST_VAAPI_UTILS_H */
|