2004-06-15 09:11:06 +00:00
|
|
|
/* GStreamer
|
|
|
|
*
|
|
|
|
* gstv4lsrc.h: BT8x8/V4L video source element
|
|
|
|
*
|
2002-01-31 22:22:42 +00:00
|
|
|
* Copyright (C) 2001-2002 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
2001-12-17 19:03:14 +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
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_V4LSRC_H__
|
|
|
|
#define __GST_V4LSRC_H__
|
|
|
|
|
2001-12-23 15:31:15 +00:00
|
|
|
#include <gstv4lelement.h>
|
2001-12-17 19:03:14 +00:00
|
|
|
|
2003-11-02 14:47:52 +00:00
|
|
|
G_BEGIN_DECLS
|
2001-12-17 19:03:14 +00:00
|
|
|
#define GST_TYPE_V4LSRC \
|
|
|
|
(gst_v4lsrc_get_type())
|
|
|
|
#define GST_V4LSRC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_V4LSRC,GstV4lSrc))
|
|
|
|
#define GST_V4LSRC_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_V4LSRC,GstV4lSrcClass))
|
|
|
|
#define GST_IS_V4LSRC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_V4LSRC))
|
|
|
|
#define GST_IS_V4LSRC_CLASS(obj) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_V4LSRC))
|
|
|
|
typedef struct _GstV4lSrc GstV4lSrc;
|
|
|
|
typedef struct _GstV4lSrcClass GstV4lSrcClass;
|
|
|
|
|
2004-05-13 10:13:41 +00:00
|
|
|
enum
|
|
|
|
{
|
2004-01-28 21:16:01 +00:00
|
|
|
QUEUE_STATE_ERROR = -1,
|
2004-06-15 09:11:06 +00:00
|
|
|
QUEUE_STATE_READY_FOR_QUEUE, /* the frame is ready to be queued for capture */
|
|
|
|
QUEUE_STATE_QUEUED, /* the frame is queued for capture */
|
|
|
|
QUEUE_STATE_SYNCED /* the frame is captured */
|
2004-01-28 21:16:01 +00:00
|
|
|
};
|
|
|
|
|
2004-06-16 10:13:51 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GST_V4LSRC_SYNC_MODE_CLOCK,
|
|
|
|
GST_V4LSRC_SYNC_MODE_PRIVATE_CLOCK,
|
|
|
|
GST_V4LSRC_SYNC_MODE_FIXED_FPS,
|
|
|
|
GST_V4LSRC_SYNC_MODE_NONE,
|
|
|
|
} GstV4lSrcSyncMode;
|
|
|
|
|
2004-05-13 10:13:41 +00:00
|
|
|
struct _GstV4lSrc
|
|
|
|
{
|
2001-12-23 15:31:15 +00:00
|
|
|
GstV4lElement v4lelement;
|
2001-12-17 19:03:14 +00:00
|
|
|
|
|
|
|
/* pads */
|
|
|
|
GstPad *srcpad;
|
|
|
|
|
2001-12-23 15:31:15 +00:00
|
|
|
/* capture/buffer info */
|
|
|
|
struct video_mmap mmap;
|
|
|
|
struct video_mbuf mbuf;
|
|
|
|
guint buffer_size;
|
2003-05-21 06:33:18 +00:00
|
|
|
GstClockTime timestamp_sync;
|
2001-12-23 15:31:15 +00:00
|
|
|
|
2003-05-21 06:33:18 +00:00
|
|
|
/* num of queued frames and some GThread stuff
|
|
|
|
* to wait if there's not enough */
|
|
|
|
gint8 *frame_queue_state;
|
|
|
|
GMutex *mutex_queue_state;
|
|
|
|
GCond *cond_queue_state;
|
|
|
|
gint num_queued;
|
|
|
|
gint sync_frame, queue_frame;
|
2004-01-28 21:16:01 +00:00
|
|
|
gboolean is_capturing;
|
2004-06-26 15:58:35 +00:00
|
|
|
GstClockTimeDiff latency_offset;
|
2003-05-21 06:33:18 +00:00
|
|
|
|
|
|
|
/* True if we want to stop */
|
2003-03-01 14:35:17 +00:00
|
|
|
gboolean quit;
|
2001-12-23 19:14:18 +00:00
|
|
|
|
2003-05-02 21:16:55 +00:00
|
|
|
/* A/V sync... frame counter and internal cache */
|
|
|
|
gulong handled;
|
|
|
|
gint last_frame;
|
|
|
|
gint need_writes;
|
2004-05-13 10:13:41 +00:00
|
|
|
gboolean need_discont;
|
|
|
|
GstClockTime last_discont; /* gst_element_get_time () of last discont send */
|
2003-05-02 21:16:55 +00:00
|
|
|
|
|
|
|
/* clock */
|
|
|
|
GstClock *clock;
|
|
|
|
|
|
|
|
/* time to substract from clock time to get back to timestamp */
|
|
|
|
GstClockTime substract_time;
|
|
|
|
|
|
|
|
/* how often are we going to use each frame? */
|
|
|
|
gint *use_num_times;
|
|
|
|
|
2004-01-28 21:16:01 +00:00
|
|
|
/* list of supported colourspaces (as integers) */
|
|
|
|
GList *colourspaces;
|
|
|
|
|
2004-06-16 10:13:51 +00:00
|
|
|
/* how are we going to timestamp buffers? */
|
|
|
|
GstV4lSrcSyncMode syncmode;
|
2004-06-16 15:07:58 +00:00
|
|
|
|
|
|
|
gboolean copy_mode;
|
2004-06-17 17:06:24 +00:00
|
|
|
gboolean autoprobe; /* probe on startup ? */
|
2001-12-17 19:03:14 +00:00
|
|
|
};
|
|
|
|
|
2004-05-13 10:13:41 +00:00
|
|
|
struct _GstV4lSrcClass
|
|
|
|
{
|
2001-12-23 15:31:15 +00:00
|
|
|
GstV4lElementClass parent_class;
|
2003-05-02 21:16:55 +00:00
|
|
|
|
2004-05-13 10:13:41 +00:00
|
|
|
void (*frame_capture) (GObject * object);
|
|
|
|
void (*frame_drop) (GObject * object);
|
|
|
|
void (*frame_insert) (GObject * object);
|
2001-12-17 19:03:14 +00:00
|
|
|
};
|
|
|
|
|
2004-05-13 10:13:41 +00:00
|
|
|
GType gst_v4lsrc_get_type (void);
|
2001-12-17 19:03:14 +00:00
|
|
|
|
2003-09-13 08:58:48 +00:00
|
|
|
|
2003-11-02 14:47:52 +00:00
|
|
|
G_END_DECLS
|
2001-12-17 19:03:14 +00:00
|
|
|
#endif /* __GST_V4LSRC_H__ */
|