2001-12-23 15:31:15 +00:00
|
|
|
/* G-Streamer BT8x8/V4L frame grabber plugin
|
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;
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
|
|
|
/* how are we going to push buffers? */
|
|
|
|
gboolean use_fixed_fps;
|
2001-12-17 19:03:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstV4lSrcClass {
|
2001-12-23 15:31:15 +00:00
|
|
|
GstV4lElementClass parent_class;
|
2003-05-02 21:16:55 +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
|
|
|
};
|
|
|
|
|
|
|
|
GType gst_v4lsrc_get_type(void);
|
|
|
|
|
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__ */
|