v4l2: use opened device caps instead of physical device ones
[platform/upstream/gst-plugins-good.git] / sys / v4l2 / gstv4l2videodec.h
1 /*
2  * Copyright (C) 2014 Collabora Ltd.
3  *     Author: Nicolas Dufresne <nicolas.dufresne@collabora.co.uk>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  *
20  */
21
22 #ifndef __GST_V4L2_VIDEO_DEC_H__
23 #define __GST_V4L2_VIDEO_DEC_H__
24
25 #include <gst/gst.h>
26 #include <gst/video/video.h>
27 #include <gst/video/gstvideodecoder.h>
28 #include <gst/video/gstvideometa.h>
29
30 #include <gstv4l2object.h>
31 #include <gstv4l2bufferpool.h>
32
33 GST_DEBUG_CATEGORY_EXTERN (v4l2videodec_debug);
34
35 G_BEGIN_DECLS
36
37 #define GST_TYPE_V4L2_VIDEO_DEC \
38   (gst_v4l2_video_dec_get_type())
39 #define GST_V4L2_VIDEO_DEC(obj) \
40   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_V4L2_VIDEO_DEC,GstV4l2VideoDec))
41 #define GST_V4L2_VIDEO_DEC_CLASS(klass) \
42   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_V4L2_VIDEO_DEC,GstV4l2VideoDecClass))
43 #define GST_IS_V4L2_VIDEO_DEC(obj) \
44   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_V4L2_VIDEO_DEC))
45 #define GST_IS_V4L2_VIDEO_DEC_CLASS(obj) \
46   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_V4L2_VIDEO_DEC))
47
48 typedef struct _GstV4l2VideoDec GstV4l2VideoDec;
49 typedef struct _GstV4l2VideoDecClass GstV4l2VideoDecClass;
50
51 struct _GstV4l2VideoDec
52 {
53   GstVideoDecoder parent;
54
55   /* < private > */
56   GstV4l2Object * v4l2output;
57   GstV4l2Object * v4l2capture;
58
59   /* pads */
60   GstCaps *probed_srccaps;
61   GstCaps *probed_sinkcaps;
62
63   /* State */
64   GstVideoCodecState *input_state;
65   gboolean active;
66   gboolean processing;
67   GstFlowReturn output_flow;
68 };
69
70 struct _GstV4l2VideoDecClass
71 {
72   GstVideoDecoderClass parent_class;
73
74   gchar *default_device;
75 };
76
77 GType gst_v4l2_video_dec_get_type (void);
78
79 gboolean gst_v4l2_is_video_dec       (GstCaps * sink_caps, GstCaps * src_caps);
80 gboolean gst_v4l2_video_dec_register (GstPlugin * plugin,
81                                       const gchar *basename,
82                                       const gchar *device_path,
83                                       GstCaps * sink_caps, GstCaps * src_caps);
84
85 G_END_DECLS
86
87 #endif /* __GST_V4L2_VIDEO_DEC_H__ */