| /* GStreamer |
| * Copyright (C) 2022 <xuesong.jiang@amlogic.com> |
| * |
| * This library is free software; you can redistribute it and/or |
| * modify it under the terms of the GNU Library General Public |
| * License as published by the Free Software Foundation; either |
| * version 2 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 |
| * Library General Public License for more details. |
| * |
| * You should have received a copy of the GNU Library General Public |
| * License along with this library; if not, write to the |
| * Free Software Foundation, Inc., 51 Franklin Street, Suite 500, |
| * Boston, MA 02110-1335, USA. |
| */ |
| |
| #ifndef __GST_AML_V4L2_VIDEO_DEC_H__ |
| #define __GST_AML_V4L2_VIDEO_DEC_H__ |
| |
| #include <gst/gst.h> |
| #include <gst/video/video.h> |
| #include "gstamlvideodecoder.h" |
| #include <gst/video/gstvideometa.h> |
| |
| #include <gstamlv4l2object.h> |
| #include <gstamlv4l2bufferpool.h> |
| |
| #define GST_IMPORT_LGE_PROP 0 |
| |
| G_BEGIN_DECLS |
| |
| #define GST_TYPE_AML_V4L2_VIDEO_DEC \ |
| (gst_aml_v4l2_video_dec_get_type()) |
| #define GST_AML_V4L2_VIDEO_DEC(obj) \ |
| (G_TYPE_CHECK_INSTANCE_CAST((obj), GST_TYPE_AML_V4L2_VIDEO_DEC, GstAmlV4l2VideoDec)) |
| #define GST_AML_V4L2_VIDEO_DEC_CLASS(klass) \ |
| (G_TYPE_CHECK_CLASS_CAST((klass), GST_TYPE_AML_V4L2_VIDEO_DEC, GstAmlV4l2VideoDecClass)) |
| #define GST_IS_AML_V4L2_VIDEO_DEC(obj) \ |
| (G_TYPE_CHECK_INSTANCE_TYPE((obj), GST_TYPE_AML_V4L2_VIDEO_DEC)) |
| #define GST_IS_AML_V4L2_VIDEO_DEC_CLASS(obj) \ |
| (G_TYPE_CHECK_CLASS_TYPE((klass), GST_TYPE_AML_V4L2_VIDEO_DEC)) |
| |
| typedef struct _GstAmlV4l2VideoDec GstAmlV4l2VideoDec; |
| #if GST_IMPORT_LGE_PROP |
| typedef struct _GstAmlV4l2VideoDecLgeCtxt GstAmlV4l2VideoDecLgeCtxt; |
| #endif |
| typedef struct _GstAmlV4l2VideoDecClass GstAmlV4l2VideoDecClass; |
| |
| struct _GstAmlV4l2VideoDec |
| { |
| GstAmlVideoDecoder parent; |
| |
| /* < private > */ |
| GstAmlV4l2Object *v4l2output; |
| GstAmlV4l2Object *v4l2capture; |
| |
| /* pads */ |
| GstCaps *probed_srccaps; |
| GstCaps *probed_sinkcaps; |
| |
| /* State */ |
| GstAmlVideoCodecState *input_state; |
| gboolean active; |
| GstFlowReturn output_flow; |
| |
| /* flags */ |
| gboolean is_secure_path; |
| gboolean is_res_chg; |
| |
| /* resolution change lock */ |
| GMutex res_chg_lock; |
| GCond res_chg_cond; |
| |
| GstClockTime last_out_pts; |
| GstClockTime frame_duration; |
| gboolean codec_data_inject; |
| |
| #if GST_IMPORT_LGE_PROP |
| /* LGE context */ |
| GstAmlV4l2VideoDecLgeCtxt *lge_ctxt; |
| #endif |
| }; |
| |
| struct _GstAmlV4l2VideoDecClass |
| { |
| GstAmlVideoDecoderClass parent_class; |
| |
| gchar *default_device; |
| }; |
| |
| GType gst_aml_v4l2_video_dec_get_type(void); |
| |
| gboolean gst_aml_v4l2_is_video_dec(GstCaps *sink_caps, GstCaps *src_caps); |
| void gst_aml_v4l2_video_dec_register(GstPlugin *plugin, |
| const gchar *basename, |
| const gchar *device_path, |
| GstCaps *sink_caps, GstCaps *src_caps); |
| |
| G_END_DECLS |
| |
| #endif /* __GST_AML_V4L2_VIDEO_DEC_H__ */ |