2011-07-20 06:34:33 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011, Hewlett-Packard Development Company, L.P.
|
|
|
|
* Author: Sebastian Dröge <sebastian.droege@collabora.co.uk>, Collabora Ltd.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* version 2.1 of the License.
|
|
|
|
*
|
|
|
|
* 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_OMX_VIDEO_ENC_H__
|
|
|
|
#define __GST_OMX_VIDEO_ENC_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
2012-12-12 17:45:39 +00:00
|
|
|
#include <gst/video/video.h>
|
2013-01-17 17:07:41 +00:00
|
|
|
#include <gst/video/gstvideoencoder.h>
|
2011-07-20 06:34:33 +00:00
|
|
|
|
|
|
|
#include "gstomx.h"
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_TYPE_OMX_VIDEO_ENC \
|
|
|
|
(gst_omx_video_enc_get_type())
|
|
|
|
#define GST_OMX_VIDEO_ENC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_OMX_VIDEO_ENC,GstOMXVideoEnc))
|
|
|
|
#define GST_OMX_VIDEO_ENC_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_OMX_VIDEO_ENC,GstOMXVideoEncClass))
|
|
|
|
#define GST_OMX_VIDEO_ENC_GET_CLASS(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_CLASS((obj),GST_TYPE_OMX_VIDEO_ENC,GstOMXVideoEncClass))
|
|
|
|
#define GST_IS_OMX_VIDEO_ENC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_OMX_VIDEO_ENC))
|
|
|
|
#define GST_IS_OMX_VIDEO_ENC_CLASS(obj) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_OMX_VIDEO_ENC))
|
|
|
|
|
|
|
|
typedef struct _GstOMXVideoEnc GstOMXVideoEnc;
|
|
|
|
typedef struct _GstOMXVideoEncClass GstOMXVideoEncClass;
|
|
|
|
|
|
|
|
struct _GstOMXVideoEnc
|
|
|
|
{
|
2012-06-20 12:11:58 +00:00
|
|
|
GstVideoEncoder parent;
|
2011-07-20 06:34:33 +00:00
|
|
|
|
|
|
|
/* < protected > */
|
2013-02-25 08:15:46 +00:00
|
|
|
GstOMXComponent *enc;
|
|
|
|
GstOMXPort *enc_in_port, *enc_out_port;
|
2011-07-20 06:34:33 +00:00
|
|
|
|
|
|
|
/* < private > */
|
2012-06-20 12:11:58 +00:00
|
|
|
GstVideoCodecState *input_state;
|
2011-07-20 06:34:33 +00:00
|
|
|
/* TRUE if the component is configured and saw
|
|
|
|
* the first buffer */
|
|
|
|
gboolean started;
|
2017-07-24 10:31:37 +00:00
|
|
|
/* TRUE if the ports where disabled after being activated the first time. */
|
|
|
|
gboolean disabled;
|
2011-07-28 09:54:16 +00:00
|
|
|
|
2011-12-06 11:46:51 +00:00
|
|
|
GstClockTime last_upstream_ts;
|
|
|
|
|
2011-11-01 15:41:46 +00:00
|
|
|
/* Draining state */
|
2012-11-12 10:29:48 +00:00
|
|
|
GMutex drain_lock;
|
|
|
|
GCond drain_cond;
|
2011-11-01 15:41:46 +00:00
|
|
|
/* TRUE if EOS buffers shouldn't be forwarded */
|
2018-05-17 07:54:11 +00:00
|
|
|
gboolean draining; /* protected by drain_lock */
|
2011-11-01 15:41:46 +00:00
|
|
|
|
2011-07-28 09:54:16 +00:00
|
|
|
/* properties */
|
2011-11-02 12:50:14 +00:00
|
|
|
guint32 control_rate;
|
2018-02-14 16:20:02 +00:00
|
|
|
guint32 target_bitrate; /* protected by object lock */
|
2011-07-28 09:54:16 +00:00
|
|
|
guint32 quant_i_frames;
|
|
|
|
guint32 quant_p_frames;
|
|
|
|
guint32 quant_b_frames;
|
2017-06-08 10:31:21 +00:00
|
|
|
#ifdef USE_OMX_TARGET_ZYNQ_USCALE_PLUS
|
|
|
|
guint32 qp_mode;
|
|
|
|
guint32 min_qp;
|
|
|
|
guint32 max_qp;
|
|
|
|
guint32 gop_mode;
|
|
|
|
guint32 gdr_mode;
|
|
|
|
guint32 initial_delay;
|
|
|
|
guint32 cpb_size;
|
|
|
|
guint32 scaling_list;
|
|
|
|
gboolean low_bandwidth;
|
|
|
|
guint32 max_bitrate;
|
|
|
|
guint32 aspect_ratio;
|
|
|
|
gboolean filler_data;
|
|
|
|
guint32 num_slices;
|
|
|
|
guint32 slice_size;
|
|
|
|
gboolean dependent_slice;
|
2018-02-06 13:25:57 +00:00
|
|
|
gint default_roi_quality;
|
2018-08-06 20:02:41 +00:00
|
|
|
gboolean long_term_ref;
|
|
|
|
guint32 long_term_freq;
|
2018-08-28 20:03:14 +00:00
|
|
|
guint32 look_ahead;
|
2017-06-08 10:31:21 +00:00
|
|
|
#endif
|
2011-11-01 14:10:12 +00:00
|
|
|
|
2018-03-29 14:42:40 +00:00
|
|
|
guint32 default_target_bitrate;
|
|
|
|
|
2011-11-01 14:10:12 +00:00
|
|
|
GstFlowReturn downstream_flow_ret;
|
2017-07-20 14:35:31 +00:00
|
|
|
|
|
|
|
GstOMXBufferAllocation input_allocation;
|
2017-07-27 09:21:59 +00:00
|
|
|
/* TRUE if encoder is passing dmabuf's fd directly to the OMX component */
|
|
|
|
gboolean input_dmabuf;
|
2018-04-26 10:30:47 +00:00
|
|
|
/* Number of buffers requested downstream */
|
|
|
|
guint nb_downstream_buffers;
|
2018-02-06 13:25:57 +00:00
|
|
|
|
2018-05-15 09:59:26 +00:00
|
|
|
/* TRUE if input buffers are from the pool we proposed to upstream */
|
|
|
|
gboolean in_pool_used;
|
|
|
|
|
2018-02-06 13:25:57 +00:00
|
|
|
#ifdef USE_OMX_TARGET_ZYNQ_USCALE_PLUS
|
|
|
|
GEnumClass *alg_roi_quality_enum_class;
|
|
|
|
#endif
|
2011-07-20 06:34:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstOMXVideoEncClass
|
|
|
|
{
|
2012-06-20 12:11:58 +00:00
|
|
|
GstVideoEncoderClass parent_class;
|
2011-07-20 06:34:33 +00:00
|
|
|
|
2012-04-12 19:57:32 +00:00
|
|
|
GstOMXClassData cdata;
|
2011-07-20 06:34:33 +00:00
|
|
|
|
2012-06-20 12:11:58 +00:00
|
|
|
gboolean (*set_format) (GstOMXVideoEnc * self, GstOMXPort * port, GstVideoCodecState * state);
|
|
|
|
GstCaps *(*get_caps) (GstOMXVideoEnc * self, GstOMXPort * port, GstVideoCodecState * state);
|
|
|
|
GstFlowReturn (*handle_output_frame) (GstOMXVideoEnc * self, GstOMXPort * port, GstOMXBuffer * buffer, GstVideoCodecFrame * frame);
|
2011-07-20 06:34:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
GType gst_omx_video_enc_get_type (void);
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GST_OMX_VIDEO_ENC_H__ */
|