2012-08-20 11:45:53 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012, Collabora Ltd.
|
|
|
|
* Author: Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
|
|
|
*
|
|
|
|
* 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_AMC_VIDEO_DEC_H__
|
|
|
|
#define __GST_AMC_VIDEO_DEC_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
2014-06-05 08:33:56 +00:00
|
|
|
#include <gst/gl/gl.h>
|
2012-08-20 11:45:53 +00:00
|
|
|
|
|
|
|
#include <gst/video/gstvideodecoder.h>
|
|
|
|
|
|
|
|
#include "gstamc.h"
|
2018-11-12 19:02:37 +00:00
|
|
|
#include "gstamcsurfacetexture.h"
|
2012-08-20 11:45:53 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_TYPE_AMC_VIDEO_DEC \
|
|
|
|
(gst_amc_video_dec_get_type())
|
|
|
|
#define GST_AMC_VIDEO_DEC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_AMC_VIDEO_DEC,GstAmcVideoDec))
|
|
|
|
#define GST_AMC_VIDEO_DEC_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_AMC_VIDEO_DEC,GstAmcVideoDecClass))
|
|
|
|
#define GST_AMC_VIDEO_DEC_GET_CLASS(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_CLASS((obj),GST_TYPE_AMC_VIDEO_DEC,GstAmcVideoDecClass))
|
|
|
|
#define GST_IS_AMC_VIDEO_DEC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_AMC_VIDEO_DEC))
|
|
|
|
#define GST_IS_AMC_VIDEO_DEC_CLASS(obj) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_AMC_VIDEO_DEC))
|
|
|
|
|
|
|
|
typedef struct _GstAmcVideoDec GstAmcVideoDec;
|
|
|
|
typedef struct _GstAmcVideoDecClass GstAmcVideoDecClass;
|
2014-06-05 08:33:56 +00:00
|
|
|
typedef enum _GstAmcCodecConfig GstAmcCodecConfig;
|
|
|
|
|
|
|
|
enum _GstAmcCodecConfig
|
|
|
|
{
|
|
|
|
AMC_CODEC_CONFIG_NONE,
|
|
|
|
AMC_CODEC_CONFIG_WITH_SURFACE,
|
|
|
|
AMC_CODEC_CONFIG_WITHOUT_SURFACE,
|
|
|
|
};
|
2012-08-20 11:45:53 +00:00
|
|
|
|
|
|
|
struct _GstAmcVideoDec
|
|
|
|
{
|
|
|
|
GstVideoDecoder parent;
|
|
|
|
|
|
|
|
/* < private > */
|
|
|
|
GstAmcCodec *codec;
|
2014-06-05 08:33:56 +00:00
|
|
|
GstAmcCodecConfig codec_config;
|
2012-08-20 11:45:53 +00:00
|
|
|
|
|
|
|
GstVideoCodecState *input_state;
|
|
|
|
gboolean input_state_changed;
|
|
|
|
|
|
|
|
/* Output format of the codec */
|
|
|
|
GstVideoFormat format;
|
2013-11-13 10:41:33 +00:00
|
|
|
GstAmcColorFormatInfo color_format_info;
|
2012-08-20 11:45:53 +00:00
|
|
|
|
2014-06-05 08:33:56 +00:00
|
|
|
/* Output dimensions */
|
|
|
|
guint width;
|
|
|
|
guint height;
|
|
|
|
|
2012-10-18 14:41:07 +00:00
|
|
|
guint8 *codec_data;
|
|
|
|
gsize codec_data_size;
|
2012-08-20 11:45:53 +00:00
|
|
|
/* TRUE if the component is configured and saw
|
|
|
|
* the first buffer */
|
|
|
|
gboolean started;
|
|
|
|
gboolean flushing;
|
|
|
|
|
|
|
|
GstClockTime last_upstream_ts;
|
|
|
|
|
|
|
|
/* Draining state */
|
2012-11-12 10:32:44 +00:00
|
|
|
GMutex drain_lock;
|
|
|
|
GCond drain_cond;
|
2012-08-20 11:45:53 +00:00
|
|
|
/* TRUE if EOS buffers shouldn't be forwarded */
|
|
|
|
gboolean draining;
|
2014-08-14 12:24:21 +00:00
|
|
|
/* TRUE if the component is drained currently */
|
|
|
|
gboolean drained;
|
2012-08-20 11:45:53 +00:00
|
|
|
|
2018-11-12 19:02:37 +00:00
|
|
|
GstAmcSurfaceTexture *surface;
|
2014-06-05 08:33:56 +00:00
|
|
|
|
2015-10-15 13:34:22 +00:00
|
|
|
GstGLDisplay *gl_display;
|
2014-06-05 08:33:56 +00:00
|
|
|
GstGLContext *gl_context;
|
2015-10-15 13:34:22 +00:00
|
|
|
GstGLContext *other_gl_context;
|
2014-06-05 08:33:56 +00:00
|
|
|
|
|
|
|
gboolean downstream_supports_gl;
|
2012-08-20 11:45:53 +00:00
|
|
|
GstFlowReturn downstream_flow_ret;
|
2014-06-05 08:33:56 +00:00
|
|
|
|
2015-11-03 02:19:41 +00:00
|
|
|
gboolean gl_mem_attached;
|
|
|
|
GstGLMemory *oes_mem;
|
|
|
|
GError *gl_error;
|
|
|
|
GMutex gl_lock;
|
|
|
|
GCond gl_cond;
|
|
|
|
guint gl_last_rendered_frame;
|
|
|
|
guint gl_pushed_frame_count; /* n buffers pushed */
|
|
|
|
guint gl_ready_frame_count; /* n buffers ready for GL access */
|
2015-11-18 23:32:03 +00:00
|
|
|
guint gl_released_frame_count; /* n buffers released */
|
2015-11-03 02:19:41 +00:00
|
|
|
GQueue *gl_queue;
|
2012-08-20 11:45:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstAmcVideoDecClass
|
|
|
|
{
|
|
|
|
GstVideoDecoderClass parent_class;
|
|
|
|
|
|
|
|
const GstAmcCodecInfo *codec_info;
|
|
|
|
};
|
|
|
|
|
|
|
|
GType gst_amc_video_dec_get_type (void);
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GST_AMC_VIDEO_DEC_H__ */
|