Tizen 2.0 Release
[framework/multimedia/gst-plugins-good0.10.git] / sys / v4l2 / v4l2src_calls.h
1 /* GStreamer
2  *
3  * Copyright (C) 2002 Ronald Bultje <rbultje@ronald.bitfreak.net>
4  *               2006 Edgard Lima <edgard.lima@indt.org.br>
5  *
6  * v4l2src.h - system calls
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23
24 #ifndef __V4L2SRC_CALLS_H__
25 #define __V4L2SRC_CALLS_H__
26
27 #include "gstv4l2src.h"
28 #include "v4l2_calls.h"
29
30 gboolean   gst_v4l2src_get_capture       (GstV4l2Src * v4l2src);
31 gboolean   gst_v4l2src_set_capture       (GstV4l2Src * v4l2src,
32                                           guint32 pixelformat,
33                                           guint32 width, guint32 height,
34                                           gboolean interlaced,
35                                           guint32 fps_n, guint32 fps_d);
36
37 gboolean   gst_v4l2src_capture_init      (GstV4l2Src * v4l2src, GstCaps *caps);
38 gboolean   gst_v4l2src_capture_start     (GstV4l2Src * v4l2src);
39
40 GstFlowReturn gst_v4l2src_grab_frame     (GstV4l2Src * v4l2src, GstBuffer **buf);
41
42 gboolean   gst_v4l2src_capture_stop      (GstV4l2Src * v4l2src);
43 gboolean   gst_v4l2src_capture_deinit    (GstV4l2Src * v4l2src);
44
45
46 #endif /* __V4L2SRC_CALLS_H__ */