2006-03-11 22:50:03 +00:00
|
|
|
/* GStreamer
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001-2002 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
2017-02-26 00:47:03 +00:00
|
|
|
* 2006 Edgard Lima <edgard.lima@gmail.com>
|
2006-09-02 14:28:55 +00:00
|
|
|
*
|
|
|
|
* gstv4l2src.h: BT8x8/V4L2 source element
|
2002-09-09 07:14:35 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-04 00:07:18 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2002-09-09 07:14:35 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_V4L2SRC_H__
|
|
|
|
#define __GST_V4L2SRC_H__
|
|
|
|
|
2006-05-11 17:59:59 +00:00
|
|
|
#include <gstv4l2object.h>
|
2009-08-04 07:14:20 +00:00
|
|
|
#include <gstv4l2bufferpool.h>
|
2002-09-09 07:14:35 +00:00
|
|
|
|
2006-03-11 22:50:03 +00:00
|
|
|
G_BEGIN_DECLS
|
2006-05-18 19:34:47 +00:00
|
|
|
|
2006-09-02 14:45:04 +00:00
|
|
|
#define GST_TYPE_V4L2SRC \
|
2006-03-11 22:50:03 +00:00
|
|
|
(gst_v4l2src_get_type())
|
2006-09-02 14:45:04 +00:00
|
|
|
#define GST_V4L2SRC(obj) \
|
2006-03-11 22:50:03 +00:00
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_V4L2SRC,GstV4l2Src))
|
2006-09-02 14:45:04 +00:00
|
|
|
#define GST_V4L2SRC_CLASS(klass) \
|
2006-03-11 22:50:03 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_V4L2SRC,GstV4l2SrcClass))
|
2006-09-02 14:45:04 +00:00
|
|
|
#define GST_IS_V4L2SRC(obj) \
|
2006-03-11 22:50:03 +00:00
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_V4L2SRC))
|
2006-09-02 14:45:04 +00:00
|
|
|
#define GST_IS_V4L2SRC_CLASS(klass) \
|
2006-03-11 22:50:03 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_V4L2SRC))
|
2006-05-18 19:34:47 +00:00
|
|
|
|
2006-03-11 22:50:03 +00:00
|
|
|
typedef struct _GstV4l2Src GstV4l2Src;
|
|
|
|
typedef struct _GstV4l2SrcClass GstV4l2SrcClass;
|
|
|
|
|
2006-09-26 14:17:54 +00:00
|
|
|
/**
|
|
|
|
* GstV4l2Src:
|
|
|
|
*
|
|
|
|
* Opaque object.
|
|
|
|
*/
|
2006-03-11 22:50:03 +00:00
|
|
|
struct _GstV4l2Src
|
|
|
|
{
|
2006-05-11 17:59:59 +00:00
|
|
|
GstPushSrc pushsrc;
|
|
|
|
|
2006-09-26 14:17:54 +00:00
|
|
|
/*< private >*/
|
2006-05-11 17:59:59 +00:00
|
|
|
GstV4l2Object * v4l2object;
|
2004-01-12 02:19:57 +00:00
|
|
|
|
2006-09-15 19:11:00 +00:00
|
|
|
guint64 offset;
|
2007-09-05 14:43:16 +00:00
|
|
|
|
2015-03-27 20:09:44 +00:00
|
|
|
/* offset adjust after renegotiation */
|
|
|
|
guint64 renegotiation_adjust;
|
|
|
|
|
2010-06-22 12:48:04 +00:00
|
|
|
GstClockTime ctrl_time;
|
2014-09-05 12:29:20 +00:00
|
|
|
|
2015-03-13 18:48:03 +00:00
|
|
|
gboolean pending_set_fmt;
|
|
|
|
|
2014-09-05 12:29:20 +00:00
|
|
|
/* Timestamp sanity check */
|
|
|
|
GstClockTime last_timestamp;
|
|
|
|
gboolean has_bad_timestamp;
|
2006-03-11 22:50:03 +00:00
|
|
|
};
|
2003-05-02 21:16:56 +00:00
|
|
|
|
2006-03-11 22:50:03 +00:00
|
|
|
struct _GstV4l2SrcClass
|
|
|
|
{
|
2006-05-11 17:59:59 +00:00
|
|
|
GstPushSrcClass parent_class;
|
2011-04-05 09:05:19 +00:00
|
|
|
|
2006-05-11 17:59:59 +00:00
|
|
|
GList *v4l2_class_devices;
|
2002-09-09 07:14:35 +00:00
|
|
|
};
|
|
|
|
|
2006-03-11 22:50:03 +00:00
|
|
|
GType gst_v4l2src_get_type (void);
|
|
|
|
|
|
|
|
G_END_DECLS
|
2006-09-26 13:18:06 +00:00
|
|
|
|
2002-09-09 07:14:35 +00:00
|
|
|
#endif /* __GST_V4L2SRC_H__ */
|