Initialize Tizen 2.3
[framework/multimedia/gst-plugins-base0.10.git] / wearable / sys / v4l / gstv4ljpegsrc.h
1 /* GStreamer
2  *
3  * gstv4ljpegsrc.h: V4L video source element for JPEG cameras
4  *
5  * Copyright (C) 2001-2005 Jan Schmidt <thaytan@mad.scientist.com>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #ifndef __GST_V4LJPEGSRC_H__
24 #define __GST_V4LJPEGSRC_H__
25
26 #include <gstv4lsrc.h>
27
28 G_BEGIN_DECLS
29 #define GST_TYPE_V4LJPEGSRC \
30   (gst_v4ljpegsrc_get_type())
31 #define GST_V4LJPEGSRC(obj) \
32   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_V4LJPEGSRC,GstV4lJpegSrc))
33 #define GST_V4LJPEGSRC_CLASS(klass) \
34   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_V4LJPEGSRC,GstV4lJpegSrcClass))
35 #define GST_IS_V4LJPEGSRC(obj) \
36   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_V4LJPEGSRC))
37 #define GST_IS_V4LJPEGSRC_CLASS(klass) \
38   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_V4LJPEGSRC))
39 typedef struct _GstV4lJpegSrc GstV4lJpegSrc;
40 typedef struct _GstV4lJpegSrcClass GstV4lJpegSrcClass;
41
42 struct _GstV4lJpegSrc
43 {
44   GstV4lSrc             v4lsrc;
45   GstPadGetFunction     getfn;
46   GstPadGetCapsFunction getcapsfn;
47 };
48
49 struct _GstV4lJpegSrcClass
50 {
51   GstV4lSrcClass parent_class;
52 };
53
54 GType gst_v4ljpegsrc_get_type (void);
55
56 G_END_DECLS
57 #endif /* __GST_V4LJPEGSRC_H__ */