Imported Upstream version 0.10.23
[profile/ivi/gst-plugins-bad.git] / sys / applemedia / miovideosrc.h
1 /*
2  * Copyright (C) 2009 Ole André Vadla Ravnås <oravnas@cisco.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __GST_MIO_VIDEO_SRC_H__
21 #define __GST_MIO_VIDEO_SRC_H__
22
23 #include <gst/base/gstpushsrc.h>
24
25 #include "coremediactx.h"
26 #include "miovideodevice.h"
27
28 G_BEGIN_DECLS
29
30 #define GST_TYPE_MIO_VIDEO_SRC \
31   (gst_mio_video_src_get_type ())
32 #define GST_MIO_VIDEO_SRC(obj) \
33   (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_MIO_VIDEO_SRC, GstMIOVideoSrc))
34 #define GST_MIO_VIDEO_SRC_CAST(obj) \
35   ((GstMIOVideoSrc *) (obj))
36 #define GST_MIO_VIDEO_SRC_CLASS(klass) \
37   (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_MIO_VIDEO_SRC, GstMIOVideoSrcClass))
38 #define GST_IS_MIO_VIDEO_SRC(obj) \
39   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_MIO_VIDEO_SRC))
40 #define GST_IS_MIO_VIDEO_SRC_CLASS(klass) \
41   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_MIO_VIDEO_SRC))
42
43 typedef struct _GstMIOVideoSrc         GstMIOVideoSrc;
44 typedef struct _GstMIOVideoSrcClass    GstMIOVideoSrcClass;
45
46 struct _GstMIOVideoSrc
47 {
48   GstPushSrc push_src;
49
50   gint cv_ratio_n;
51   gint cv_ratio_d;
52
53   gchar *device_uid;
54   gchar *device_name;
55   gint device_index;
56
57   GThread *dispatcher_thread;
58   GMainLoop *dispatcher_loop;
59   GMainContext *dispatcher_ctx;
60
61   GstCoreMediaCtx *ctx;
62   GstMIOVideoDevice *device;
63
64   TundraGraph *graph;
65
66   volatile gboolean running;
67   GQueue *queue;
68   GMutex *qlock;
69   GCond *qcond;
70   guint64 prev_offset;
71   CMFormatDescriptionRef prev_format;
72 };
73
74 struct _GstMIOVideoSrcClass
75 {
76   GstPushSrcClass parent_class;
77 };
78
79 GType gst_mio_video_src_get_type (void);
80
81 G_END_DECLS
82
83 #endif /* __GST_MIO_VIDEO_SRC_H__ */