2001-12-23 15:31:15 +00:00
|
|
|
/* G-Streamer hardware MJPEG video source plugin
|
2002-01-31 22:22:42 +00:00
|
|
|
* Copyright (C) 2001-2002 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
2001-12-23 15:31:15 +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_V4LMJPEGSRC_H__
|
|
|
|
#define __GST_V4LMJPEGSRC_H__
|
|
|
|
|
|
|
|
#include <gstv4lelement.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <videodev_mjpeg.h>
|
|
|
|
|
2003-11-02 14:47:52 +00:00
|
|
|
G_BEGIN_DECLS
|
2001-12-23 15:31:15 +00:00
|
|
|
#define GST_TYPE_V4LMJPEGSRC \
|
|
|
|
(gst_v4lmjpegsrc_get_type())
|
|
|
|
#define GST_V4LMJPEGSRC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_V4LMJPEGSRC,GstV4lMjpegSrc))
|
|
|
|
#define GST_V4LMJPEGSRC_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_V4LMJPEGSRC,GstV4lMjpegSrcClass))
|
|
|
|
#define GST_IS_V4LMJPEGSRC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_V4LMJPEGSRC))
|
|
|
|
#define GST_IS_V4LMJPEGSRC_CLASS(obj) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_V4LMJPEGSRC))
|
|
|
|
typedef struct _GstV4lMjpegSrc GstV4lMjpegSrc;
|
|
|
|
typedef struct _GstV4lMjpegSrcClass GstV4lMjpegSrcClass;
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
struct _GstV4lMjpegSrc
|
|
|
|
{
|
2001-12-23 15:31:15 +00:00
|
|
|
GstV4lElement v4lelement;
|
|
|
|
|
|
|
|
/* pads */
|
|
|
|
GstPad *srcpad;
|
|
|
|
|
|
|
|
/* buffer/capture info */
|
|
|
|
struct mjpeg_sync bsync;
|
|
|
|
struct mjpeg_requestbuffers breq;
|
|
|
|
|
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 queue_frame;
|
|
|
|
|
|
|
|
/* True if we want to stop */
|
|
|
|
gboolean quit;
|
|
|
|
|
2003-05-02 21:16:55 +00:00
|
|
|
/* A/V sync... frame counter and internal cache */
|
|
|
|
gulong handled;
|
|
|
|
gint last_frame;
|
|
|
|
gint last_size;
|
|
|
|
gint need_writes;
|
|
|
|
gulong last_seq;
|
|
|
|
|
|
|
|
/* 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;
|
2002-01-15 15:52:09 +00:00
|
|
|
|
2003-05-10 14:36:34 +00:00
|
|
|
/* end size */
|
|
|
|
gint end_width, end_height;
|
|
|
|
|
2001-12-23 15:31:15 +00:00
|
|
|
/* caching values */
|
2003-05-10 14:36:34 +00:00
|
|
|
#if 0
|
2001-12-23 15:31:15 +00:00
|
|
|
gint x_offset;
|
|
|
|
gint y_offset;
|
|
|
|
gint frame_width;
|
|
|
|
gint frame_height;
|
2003-05-10 14:36:34 +00:00
|
|
|
#endif
|
2001-12-23 15:31:15 +00:00
|
|
|
|
|
|
|
gint quality;
|
|
|
|
gint numbufs;
|
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
struct _GstV4lMjpegSrcClass
|
|
|
|
{
|
2001-12-23 15:31:15 +00:00
|
|
|
GstV4lElementClass parent_class;
|
2003-05-02 21:16:55 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
void (*frame_capture) (GObject * object);
|
|
|
|
void (*frame_drop) (GObject * object);
|
|
|
|
void (*frame_insert) (GObject * object);
|
|
|
|
void (*frame_lost) (GObject * object, gint num_lost);
|
2001-12-23 15:31:15 +00:00
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
GType gst_v4lmjpegsrc_get_type (void);
|
2001-12-23 15:31:15 +00:00
|
|
|
|
2003-09-13 08:58:48 +00:00
|
|
|
|
2003-11-02 14:47:52 +00:00
|
|
|
G_END_DECLS
|
2001-12-23 15:31:15 +00:00
|
|
|
#endif /* __GST_V4LMJPEGSRC_H__ */
|