2013-07-29 05:44:48 +00:00
|
|
|
/*
|
|
|
|
* gstvaapiencode.h - VA-API video encoder
|
|
|
|
*
|
2014-01-22 17:54:14 +00:00
|
|
|
* Copyright (C) 2013-2014 Intel Corporation
|
2014-01-22 17:49:20 +00:00
|
|
|
* Author: Wind Yuan <feng.yuan@intel.com>
|
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
|
2013-07-29 05:44:48 +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.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GST_VAAPIENCODE_H
|
|
|
|
#define GST_VAAPIENCODE_H
|
|
|
|
|
2013-12-13 09:24:26 +00:00
|
|
|
#include "gstvaapipluginbase.h"
|
2013-07-29 05:44:48 +00:00
|
|
|
#include <gst/vaapi/gstvaapiencoder.h>
|
|
|
|
|
2017-08-10 01:32:13 +00:00
|
|
|
#if USE_H264_FEI_ENCODER
|
|
|
|
#include <gst/vaapi/gstvaapisurface.h>
|
|
|
|
#include <gst/vaapi/gstvaapicodedbufferproxy.h>
|
|
|
|
#include "gstvaapifeivideometa.h"
|
|
|
|
#endif
|
|
|
|
|
2013-07-29 05:44:48 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_TYPE_VAAPIENCODE \
|
2013-11-26 15:34:14 +00:00
|
|
|
(gst_vaapiencode_get_type ())
|
|
|
|
#define GST_VAAPIENCODE_CAST(obj) \
|
|
|
|
((GstVaapiEncode *)(obj))
|
|
|
|
#define GST_VAAPIENCODE(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_VAAPIENCODE, GstVaapiEncode))
|
|
|
|
#define GST_VAAPIENCODE_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_VAAPIENCODE, GstVaapiEncodeClass))
|
|
|
|
#define GST_VAAPIENCODE_GET_CLASS(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_VAAPIENCODE, GstVaapiEncodeClass))
|
2013-07-29 05:44:48 +00:00
|
|
|
#define GST_IS_VAAPIENCODE(obj) \
|
2013-11-26 15:34:14 +00:00
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_VAAPIENCODE))
|
2013-07-29 05:44:48 +00:00
|
|
|
#define GST_IS_VAAPIENCODE_CLASS(klass) \
|
2013-11-26 15:34:14 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_VAAPIENCODE))
|
2013-07-29 05:44:48 +00:00
|
|
|
|
|
|
|
typedef struct _GstVaapiEncode GstVaapiEncode;
|
|
|
|
typedef struct _GstVaapiEncodeClass GstVaapiEncodeClass;
|
|
|
|
|
|
|
|
struct _GstVaapiEncode
|
|
|
|
{
|
2013-11-26 15:34:14 +00:00
|
|
|
/*< private >*/
|
2013-12-13 09:24:26 +00:00
|
|
|
GstVaapiPluginBase parent_instance;
|
2013-07-29 05:44:48 +00:00
|
|
|
|
|
|
|
GstVaapiEncoder *encoder;
|
2014-01-09 17:10:35 +00:00
|
|
|
GstVideoCodecState *input_state;
|
|
|
|
gboolean input_state_changed;
|
2014-10-29 13:46:12 +00:00
|
|
|
/* needs to be set by the subclass implementation */
|
|
|
|
gboolean need_codec_data;
|
2014-01-09 17:10:35 +00:00
|
|
|
GstVideoCodecState *output_state;
|
2014-01-08 17:36:46 +00:00
|
|
|
GPtrArray *prop_values;
|
2016-12-01 09:57:10 +00:00
|
|
|
GstCaps *allowed_sinkpad_caps;
|
2013-07-29 05:44:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstVaapiEncodeClass
|
|
|
|
{
|
2013-11-26 15:34:14 +00:00
|
|
|
/*< private >*/
|
2013-12-13 09:24:26 +00:00
|
|
|
GstVaapiPluginBaseClass parent_class;
|
2013-07-29 05:44:48 +00:00
|
|
|
|
2014-01-08 17:36:46 +00:00
|
|
|
GPtrArray * (*get_properties) (void);
|
|
|
|
gboolean (*get_property) (GstVaapiEncode * encode,
|
|
|
|
guint prop_id, GValue * value);
|
|
|
|
gboolean (*set_property) (GstVaapiEncode * encode,
|
|
|
|
guint prop_id, const GValue * value);
|
|
|
|
|
2014-01-10 09:54:22 +00:00
|
|
|
gboolean (*set_config) (GstVaapiEncode * encode);
|
2014-01-09 17:10:35 +00:00
|
|
|
GstCaps * (*get_caps) (GstVaapiEncode * encode);
|
2014-01-09 09:09:38 +00:00
|
|
|
GstVaapiEncoder * (*alloc_encoder) (GstVaapiEncode * encode,
|
|
|
|
GstVaapiDisplay * display);
|
|
|
|
GstFlowReturn (*alloc_buffer) (GstVaapiEncode * encode,
|
|
|
|
GstVaapiCodedBuffer * coded_buf,
|
|
|
|
GstBuffer ** outbuf_ptr);
|
2017-04-06 14:28:12 +00:00
|
|
|
GstVaapiProfile (*get_profile) (GstCaps * caps);
|
2017-08-10 01:32:13 +00:00
|
|
|
|
|
|
|
#if USE_H264_FEI_ENCODER
|
|
|
|
|
|
|
|
gboolean (*load_control_data) (GstVaapiEncode *encoder,
|
|
|
|
GstVaapiFeiVideoMeta *feimeta,
|
|
|
|
GstVaapiSurfaceProxy *proxy);
|
|
|
|
|
|
|
|
GstVaapiFeiVideoMeta* (*save_stats_to_meta) (GstVaapiEncode *base_encode,
|
|
|
|
GstVaapiCodedBufferProxy *proxy);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2013-07-29 05:44:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
GType
|
|
|
|
gst_vaapiencode_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2014-01-08 17:36:46 +00:00
|
|
|
G_GNUC_INTERNAL
|
|
|
|
gboolean
|
|
|
|
gst_vaapiencode_init_properties (GstVaapiEncode * encode);
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
gboolean
|
|
|
|
gst_vaapiencode_class_init_properties (GstVaapiEncodeClass * encode_class);
|
|
|
|
|
2013-07-29 05:44:48 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* GST_VAAPIENCODE_H */
|