2011-06-28 06:51:23 +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_DEC_H__
|
|
|
|
#define __GST_OMX_VIDEO_DEC_H__
|
|
|
|
|
2013-02-25 10:55:04 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2011-06-28 06:51:23 +00:00
|
|
|
#include <gst/gst.h>
|
2013-01-17 17:07:41 +00:00
|
|
|
#include <gst/video/video.h>
|
2012-06-20 12:11:58 +00:00
|
|
|
#include <gst/video/gstvideodecoder.h>
|
2011-06-28 06:51:23 +00:00
|
|
|
|
|
|
|
#include "gstomx.h"
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_TYPE_OMX_VIDEO_DEC \
|
|
|
|
(gst_omx_video_dec_get_type())
|
|
|
|
#define GST_OMX_VIDEO_DEC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_OMX_VIDEO_DEC,GstOMXVideoDec))
|
|
|
|
#define GST_OMX_VIDEO_DEC_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_OMX_VIDEO_DEC,GstOMXVideoDecClass))
|
|
|
|
#define GST_OMX_VIDEO_DEC_GET_CLASS(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_CLASS((obj),GST_TYPE_OMX_VIDEO_DEC,GstOMXVideoDecClass))
|
|
|
|
#define GST_IS_OMX_VIDEO_DEC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_OMX_VIDEO_DEC))
|
|
|
|
#define GST_IS_OMX_VIDEO_DEC_CLASS(obj) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_OMX_VIDEO_DEC))
|
|
|
|
|
|
|
|
typedef struct _GstOMXVideoDec GstOMXVideoDec;
|
|
|
|
typedef struct _GstOMXVideoDecClass GstOMXVideoDecClass;
|
|
|
|
|
|
|
|
struct _GstOMXVideoDec
|
|
|
|
{
|
2012-06-20 12:11:58 +00:00
|
|
|
GstVideoDecoder parent;
|
2011-06-28 06:51:23 +00:00
|
|
|
|
|
|
|
/* < protected > */
|
2013-02-25 08:12:22 +00:00
|
|
|
GstOMXComponent *dec;
|
|
|
|
GstOMXPort *dec_in_port, *dec_out_port;
|
2013-02-25 10:55:04 +00:00
|
|
|
|
2013-03-07 13:10:12 +00:00
|
|
|
GstBufferPool *in_port_pool, *out_port_pool;
|
|
|
|
|
2011-06-28 06:51:23 +00:00
|
|
|
/* < private > */
|
2012-06-20 12:11:58 +00:00
|
|
|
GstVideoCodecState *input_state;
|
2011-06-28 06:51:23 +00:00
|
|
|
GstBuffer *codec_data;
|
2011-07-14 05:58:41 +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-11-01 12:58:38 +00:00
|
|
|
|
2011-12-06 11:47:12 +00:00
|
|
|
GstClockTime last_upstream_ts;
|
|
|
|
|
2011-11-01 15:08:59 +00:00
|
|
|
/* Draining state */
|
2012-11-12 10:29:48 +00:00
|
|
|
GMutex drain_lock;
|
|
|
|
GCond drain_cond;
|
2011-11-01 15:08:59 +00:00
|
|
|
/* TRUE if EOS buffers shouldn't be forwarded */
|
2018-05-16 15:06:29 +00:00
|
|
|
gboolean draining; /* protected by drain_lock */
|
2011-11-01 15:08:59 +00:00
|
|
|
|
2011-11-01 12:58:38 +00:00
|
|
|
GstFlowReturn downstream_flow_ret;
|
2017-06-29 21:48:47 +00:00
|
|
|
/* Initially FALSE. Switched to TRUE when all requirements
|
|
|
|
* are met to try setting up the decoder with OMX_UseBuffer.
|
|
|
|
* Switched to FALSE if this trial fails so that the decoder
|
|
|
|
* can fallback to OMX_AllocateBuffer. */
|
|
|
|
gboolean use_buffers;
|
2017-07-17 20:06:47 +00:00
|
|
|
|
|
|
|
#if defined (USE_OMX_TARGET_RPI)
|
2013-02-25 10:55:04 +00:00
|
|
|
GstOMXComponent *egl_render;
|
|
|
|
GstOMXPort *egl_in_port, *egl_out_port;
|
2017-07-17 20:06:47 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined (HAVE_GST_GL)
|
2013-02-25 10:55:04 +00:00
|
|
|
gboolean eglimage;
|
|
|
|
#endif
|
2017-07-04 10:16:39 +00:00
|
|
|
|
|
|
|
/* TRUE if decoder is producing dmabuf */
|
|
|
|
gboolean dmabuf;
|
2017-08-09 16:07:33 +00:00
|
|
|
GstOMXBufferAllocation input_allocation;
|
2017-07-06 08:18:48 +00:00
|
|
|
|
|
|
|
/* properties */
|
|
|
|
#ifdef USE_OMX_TARGET_ZYNQ_USCALE_PLUS
|
|
|
|
guint32 internal_entropy_buffers;
|
|
|
|
#endif
|
2011-06-28 06:51:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstOMXVideoDecClass
|
|
|
|
{
|
2012-06-20 12:11:58 +00:00
|
|
|
GstVideoDecoderClass parent_class;
|
2011-06-28 06:51:23 +00:00
|
|
|
|
2012-04-12 19:57:32 +00:00
|
|
|
GstOMXClassData cdata;
|
2011-07-19 08:33:15 +00:00
|
|
|
|
2012-06-20 12:11:58 +00:00
|
|
|
gboolean (*is_format_change) (GstOMXVideoDec * self, GstOMXPort * port, GstVideoCodecState * state);
|
|
|
|
gboolean (*set_format) (GstOMXVideoDec * self, GstOMXPort * port, GstVideoCodecState * state);
|
2011-06-28 06:51:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
GType gst_omx_video_dec_get_type (void);
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GST_OMX_VIDEO_DEC_H__ */
|