2010-04-23 15:59:31 +00:00
|
|
|
/*
|
2014-01-23 08:41:07 +00:00
|
|
|
* gstvaapicontext.h - VA context abstraction (private)
|
2010-04-23 15:59:31 +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>
|
2014-01-22 17:54:14 +00:00
|
|
|
* Copyright (C) 2011-2014 Intel Corporation
|
2013-11-22 04:57:18 +00:00
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
|
2010-04-23 15:59:31 +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-04-23 15:59:31 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2010-04-23 15:59:31 +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-04-23 15:59:31 +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-04-23 15:59:31 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GST_VAAPI_CONTEXT_H
|
|
|
|
#define GST_VAAPI_CONTEXT_H
|
|
|
|
|
2014-01-23 08:41:07 +00:00
|
|
|
#include "gstvaapiobject.h"
|
|
|
|
#include "gstvaapiobject_priv.h"
|
|
|
|
#include "gstvaapiprofile.h"
|
|
|
|
#include "gstvaapidisplay.h"
|
|
|
|
#include "gstvaapisurface.h"
|
|
|
|
#include "gstvaapivideopool.h"
|
2010-04-23 15:59:31 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2013-04-30 15:22:15 +00:00
|
|
|
#define GST_VAAPI_CONTEXT(obj) \
|
2014-01-23 08:27:38 +00:00
|
|
|
((GstVaapiContext *) (obj))
|
2010-04-23 15:59:31 +00:00
|
|
|
|
2014-01-23 13:01:33 +00:00
|
|
|
typedef struct _GstVaapiConfigInfoEncoder GstVaapiConfigInfoEncoder;
|
2014-01-23 08:27:38 +00:00
|
|
|
typedef struct _GstVaapiContextInfo GstVaapiContextInfo;
|
2014-01-23 08:41:07 +00:00
|
|
|
typedef struct _GstVaapiContext GstVaapiContext;
|
|
|
|
typedef struct _GstVaapiContextClass GstVaapiContextClass;
|
2010-04-23 15:59:31 +00:00
|
|
|
|
2014-01-23 12:30:41 +00:00
|
|
|
/**
|
|
|
|
* GstVaapiContextUsage:
|
|
|
|
* @GST_VAAPI_CONTEXT_MODE_DECODE: context used for decoding.
|
|
|
|
* @GST_VAAPI_CONTEXT_MODE_ENCODE: context used for encoding.
|
|
|
|
* @GST_VAAPI_CONTEXT_MODE_VPP: context used for video processing.
|
|
|
|
*
|
|
|
|
* The set of supported VA context usages.
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
GST_VAAPI_CONTEXT_USAGE_DECODE = 1,
|
|
|
|
GST_VAAPI_CONTEXT_USAGE_ENCODE,
|
|
|
|
GST_VAAPI_CONTEXT_USAGE_VPP,
|
|
|
|
} GstVaapiContextUsage;
|
|
|
|
|
2014-01-23 13:01:33 +00:00
|
|
|
/**
|
|
|
|
* GstVaapiConfigInfoEncoder:
|
|
|
|
* @rc_mode: rate-control mode (#GstVaapiRateControl).
|
2014-01-23 14:13:06 +00:00
|
|
|
* @packed_headers: notify encoder that packed headers are submitted (mask).
|
2017-05-15 16:35:40 +00:00
|
|
|
* @roi_capability: if encoder supports regions-of-interest.
|
|
|
|
* @roi_num_supported: The number of regions-of-interest supported.
|
2017-08-09 20:45:40 +00:00
|
|
|
* @fei_function: The functional mode for FEI Entrypoint (VA_FEI_FUNCTION_*).
|
2014-01-23 13:01:33 +00:00
|
|
|
*
|
|
|
|
* Extra configuration for encoding.
|
|
|
|
*/
|
|
|
|
struct _GstVaapiConfigInfoEncoder
|
|
|
|
{
|
|
|
|
GstVaapiRateControl rc_mode;
|
2014-01-23 14:13:06 +00:00
|
|
|
guint packed_headers;
|
2017-02-23 08:57:07 +00:00
|
|
|
gboolean roi_capability;
|
|
|
|
guint roi_num_supported;
|
2017-08-09 20:45:40 +00:00
|
|
|
guint fei_function;
|
2014-01-23 13:01:33 +00:00
|
|
|
};
|
|
|
|
|
2012-09-10 16:15:02 +00:00
|
|
|
/**
|
|
|
|
* GstVaapiContextInfo:
|
|
|
|
*
|
|
|
|
* Structure holding VA context info like encoded size, decoder
|
|
|
|
* profile and entry-point to use, and maximum number of reference
|
|
|
|
* frames reported by the bitstream.
|
|
|
|
*/
|
2014-01-23 08:27:38 +00:00
|
|
|
struct _GstVaapiContextInfo
|
|
|
|
{
|
2014-01-23 12:30:41 +00:00
|
|
|
GstVaapiContextUsage usage;
|
2014-01-23 08:27:38 +00:00
|
|
|
GstVaapiProfile profile;
|
|
|
|
GstVaapiEntrypoint entrypoint;
|
2014-04-25 11:45:31 +00:00
|
|
|
GstVaapiChromaType chroma_type;
|
2014-01-23 08:27:38 +00:00
|
|
|
guint width;
|
|
|
|
guint height;
|
|
|
|
guint ref_frames;
|
2014-01-23 13:01:33 +00:00
|
|
|
union _GstVaapiConfigInfo {
|
|
|
|
GstVaapiConfigInfoEncoder encoder;
|
|
|
|
} config;
|
2012-09-10 16:15:02 +00:00
|
|
|
};
|
|
|
|
|
2014-01-23 08:41:07 +00:00
|
|
|
/**
|
|
|
|
* GstVaapiContext:
|
|
|
|
*
|
|
|
|
* A VA context wrapper.
|
|
|
|
*/
|
|
|
|
struct _GstVaapiContext
|
|
|
|
{
|
|
|
|
/*< private >*/
|
|
|
|
GstVaapiObject parent_instance;
|
|
|
|
|
|
|
|
GstVaapiContextInfo info;
|
|
|
|
VAProfile va_profile;
|
|
|
|
VAEntrypoint va_entrypoint;
|
|
|
|
VAConfigID va_config;
|
|
|
|
GPtrArray *surfaces;
|
|
|
|
GstVaapiVideoPool *surfaces_pool;
|
|
|
|
GPtrArray *overlays[2];
|
|
|
|
guint overlay_id;
|
2016-05-17 22:34:23 +00:00
|
|
|
gboolean reset_on_resize;
|
2016-02-18 18:32:58 +00:00
|
|
|
GArray *formats;
|
2014-01-23 08:41:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstVaapiContextClass:
|
|
|
|
*
|
|
|
|
* A VA context wrapper class.
|
|
|
|
*/
|
|
|
|
struct _GstVaapiContextClass
|
|
|
|
{
|
|
|
|
/*< private >*/
|
|
|
|
GstVaapiObjectClass parent_class;
|
|
|
|
};
|
2010-04-23 15:59:31 +00:00
|
|
|
|
2013-07-26 11:57:35 +00:00
|
|
|
G_GNUC_INTERNAL
|
2012-09-10 16:15:02 +00:00
|
|
|
GstVaapiContext *
|
2014-01-23 08:41:07 +00:00
|
|
|
gst_vaapi_context_new (GstVaapiDisplay * display,
|
2014-01-23 08:27:38 +00:00
|
|
|
const GstVaapiContextInfo * cip);
|
2012-09-10 16:15:02 +00:00
|
|
|
|
2013-07-26 11:57:35 +00:00
|
|
|
G_GNUC_INTERNAL
|
2010-04-23 15:59:31 +00:00
|
|
|
gboolean
|
2014-01-23 08:41:07 +00:00
|
|
|
gst_vaapi_context_reset (GstVaapiContext * context,
|
2014-01-23 08:27:38 +00:00
|
|
|
const GstVaapiContextInfo * new_cip);
|
2012-09-10 16:15:02 +00:00
|
|
|
|
2013-07-26 11:57:35 +00:00
|
|
|
G_GNUC_INTERNAL
|
2010-04-23 15:59:31 +00:00
|
|
|
GstVaapiID
|
2014-01-23 08:27:38 +00:00
|
|
|
gst_vaapi_context_get_id (GstVaapiContext * context);
|
2010-04-23 15:59:31 +00:00
|
|
|
|
2013-07-26 11:57:35 +00:00
|
|
|
G_GNUC_INTERNAL
|
2013-04-03 09:37:44 +00:00
|
|
|
GstVaapiSurfaceProxy *
|
2014-01-23 08:27:38 +00:00
|
|
|
gst_vaapi_context_get_surface_proxy (GstVaapiContext * context);
|
2013-04-03 09:37:44 +00:00
|
|
|
|
2013-07-26 11:57:35 +00:00
|
|
|
G_GNUC_INTERNAL
|
2010-05-15 05:36:15 +00:00
|
|
|
guint
|
2014-01-23 08:27:38 +00:00
|
|
|
gst_vaapi_context_get_surface_count (GstVaapiContext * context);
|
2010-05-15 05:36:15 +00:00
|
|
|
|
2016-05-17 22:34:23 +00:00
|
|
|
G_GNUC_INTERNAL
|
|
|
|
void
|
|
|
|
gst_vaapi_context_reset_on_resize (GstVaapiContext * context,
|
|
|
|
gboolean reset_on_resize);
|
|
|
|
|
2016-02-18 18:32:58 +00:00
|
|
|
G_GNUC_INTERNAL
|
|
|
|
GArray *
|
|
|
|
gst_vaapi_context_get_surface_formats (GstVaapiContext * context);
|
|
|
|
|
2010-04-23 15:59:31 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* GST_VAAPI_CONTEXT_H */
|