v4l2src: Try to avoid TRY_FMT when camera is streaming
[platform/upstream/gst-plugins-good.git] / ext / qt / gstqtsrc.h
1 /*
2  * GStreamer
3  * Copyright (C) 2016 Freescale Semiconductor, Inc. All rights reserved.
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 #ifndef __GST_QT_SRC_H__
22 #define __GST_QT_SRC_H__
23
24 #include <gst/gst.h>
25 #include <gst/base/gstpushsrc.h>
26 #include <gst/video/video.h>
27 #include <gst/gl/gl.h>
28 #include "qtwindow.h"
29
30 typedef struct _GstQtSrc GstQtSrc;
31 typedef struct _GstQtSrcClass GstQtSrcClass;
32
33 G_BEGIN_DECLS
34
35 GType gst_qt_src_get_type (void);
36 #define GST_TYPE_QT_SRC            (gst_qt_src_get_type())
37 #define GST_QT_SRC(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_QT_SRC,GstQtSrc))
38 #define GST_QT_SRC_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_QT_SRC,GstQtSrcClass))
39 #define GST_IS_QT_SRC(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_QT_SRC))
40 #define GST_IS_QT_SRC_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_QT_SRC))
41 #define GST_QT_SRC_CAST(obj)       ((GstQtSrc*)(obj))
42
43 /**
44  * GstQtSrc:
45  *
46  * Opaque #GstQtSrc object
47  */
48 struct _GstQtSrc
49 {
50   /* <private> */
51   GstPushSrc            parent;
52
53   QQuickWindow          *qwindow;
54   QtGLWindow            *window;
55
56   GstVideoInfo          v_info;
57
58   GstGLDisplay         *display;
59   GstGLContext         *context;
60   GstGLContext         *qt_context;
61
62   gboolean              default_fbo;
63   gboolean              downstream_supports_affine_meta;
64   gboolean              pending_image_orientation;
65 };
66
67 /**
68  * GstQtSrcClass:
69  *
70  * The #GstQtSrcClass struct only contains private data
71  */
72 struct _GstQtSrcClass
73 {
74   /* <private> */
75   GstPushSrcClass object_class;
76 };
77
78 G_END_DECLS
79
80 #endif /* __GST_QT_SRC_H__ */