2002-07-26 22:18:57 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <2002> David A. Schleef <ds@schleef.org>
|
|
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
*
|
|
|
|
* 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_VIDEOTESTSRC_H__
|
|
|
|
#define __GST_VIDEOTESTSRC_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
gst/videotestsrc/: Make videotestsrc a pushsrc.
Original commit message from CVS:
* gst/videotestsrc/Makefile.am:
* gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
(gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
(gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
(gst_videotestsrc_init), (gst_videotestsrc_event),
(gst_videotestsrc_create), (gst_videotestsrc_start),
(gst_videotestsrc_stop), (gst_videotestsrc_get_times),
(gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
(gst_videotestsrc_get_property):
* gst/videotestsrc/gstvideotestsrc.h:
Make videotestsrc a pushsrc.
2005-07-14 18:42:47 +00:00
|
|
|
#include <gst/base/gstpushsrc.h>
|
2002-07-26 22:18:57 +00:00
|
|
|
|
2002-10-30 09:17:12 +00:00
|
|
|
G_BEGIN_DECLS
|
2004-03-15 16:32:55 +00:00
|
|
|
|
2002-07-26 22:18:57 +00:00
|
|
|
#define GST_TYPE_VIDEOTESTSRC \
|
|
|
|
(gst_videotestsrc_get_type())
|
|
|
|
#define GST_VIDEOTESTSRC(obj) \
|
2005-07-19 12:01:53 +00:00
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_VIDEOTESTSRC,GstVideoTestSrc))
|
2002-07-26 22:18:57 +00:00
|
|
|
#define GST_VIDEOTESTSRC_CLASS(klass) \
|
2005-07-19 12:01:53 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_VIDEOTESTSRC,GstVideoTestSrc))
|
2002-07-26 22:18:57 +00:00
|
|
|
#define GST_IS_VIDEOTESTSRC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VIDEOTESTSRC))
|
|
|
|
#define GST_IS_VIDEOTESTSRC_CLASS(obj) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VIDEOTESTSRC))
|
2004-03-15 16:32:55 +00:00
|
|
|
|
|
|
|
typedef enum {
|
2003-04-23 07:38:32 +00:00
|
|
|
GST_VIDEOTESTSRC_SMPTE,
|
|
|
|
GST_VIDEOTESTSRC_SNOW,
|
|
|
|
GST_VIDEOTESTSRC_BLACK,
|
2005-07-19 12:01:53 +00:00
|
|
|
} GstVideoTestSrcPattern;
|
2002-07-26 22:18:57 +00:00
|
|
|
|
2005-07-19 12:01:53 +00:00
|
|
|
typedef struct _GstVideoTestSrc GstVideoTestSrc;
|
|
|
|
typedef struct _GstVideoTestSrcClass GstVideoTestSrcClass;
|
2002-07-26 22:18:57 +00:00
|
|
|
|
2005-07-19 12:01:53 +00:00
|
|
|
struct _GstVideoTestSrc {
|
gst/videotestsrc/: Make videotestsrc a pushsrc.
Original commit message from CVS:
* gst/videotestsrc/Makefile.am:
* gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
(gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
(gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
(gst_videotestsrc_init), (gst_videotestsrc_event),
(gst_videotestsrc_create), (gst_videotestsrc_start),
(gst_videotestsrc_stop), (gst_videotestsrc_get_times),
(gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
(gst_videotestsrc_get_property):
* gst/videotestsrc/gstvideotestsrc.h:
Make videotestsrc a pushsrc.
2005-07-14 18:42:47 +00:00
|
|
|
GstPushSrc element;
|
2002-07-26 22:18:57 +00:00
|
|
|
|
gst/videotestsrc/: Make videotestsrc a pushsrc.
Original commit message from CVS:
* gst/videotestsrc/Makefile.am:
* gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
(gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
(gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
(gst_videotestsrc_init), (gst_videotestsrc_event),
(gst_videotestsrc_create), (gst_videotestsrc_start),
(gst_videotestsrc_stop), (gst_videotestsrc_get_times),
(gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
(gst_videotestsrc_get_property):
* gst/videotestsrc/gstvideotestsrc.h:
Make videotestsrc a pushsrc.
2005-07-14 18:42:47 +00:00
|
|
|
/* type of output */
|
2005-07-19 12:01:53 +00:00
|
|
|
GstVideoTestSrcPattern pattern_type;
|
2003-07-14 08:36:03 +00:00
|
|
|
|
2002-07-26 22:18:57 +00:00
|
|
|
/* video state */
|
2003-04-16 07:52:54 +00:00
|
|
|
char *format_name;
|
2002-07-26 22:18:57 +00:00
|
|
|
gint width;
|
|
|
|
gint height;
|
2003-04-16 07:52:54 +00:00
|
|
|
struct fourcc_list_struct *fourcc;
|
gst/videotestsrc/: Make videotestsrc a pushsrc.
Original commit message from CVS:
* gst/videotestsrc/Makefile.am:
* gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
(gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
(gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
(gst_videotestsrc_init), (gst_videotestsrc_event),
(gst_videotestsrc_create), (gst_videotestsrc_start),
(gst_videotestsrc_stop), (gst_videotestsrc_get_times),
(gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
(gst_videotestsrc_get_property):
* gst/videotestsrc/gstvideotestsrc.h:
Make videotestsrc a pushsrc.
2005-07-14 18:42:47 +00:00
|
|
|
gint bpp;
|
|
|
|
gdouble rate;
|
2004-07-22 15:55:33 +00:00
|
|
|
|
2002-07-26 22:18:57 +00:00
|
|
|
/* private */
|
2004-08-05 17:41:33 +00:00
|
|
|
gint64 timestamp_offset; /* base offset */
|
|
|
|
GstClockTime running_time; /* total running time */
|
|
|
|
gint64 n_frames; /* total frames sent */
|
2004-06-18 22:32:44 +00:00
|
|
|
gint64 segment_start_frame;
|
|
|
|
gint64 segment_end_frame;
|
gst/videotestsrc/: Make videotestsrc a pushsrc.
Original commit message from CVS:
* gst/videotestsrc/Makefile.am:
* gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
(gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
(gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
(gst_videotestsrc_init), (gst_videotestsrc_event),
(gst_videotestsrc_create), (gst_videotestsrc_start),
(gst_videotestsrc_stop), (gst_videotestsrc_get_times),
(gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
(gst_videotestsrc_get_property):
* gst/videotestsrc/gstvideotestsrc.h:
Make videotestsrc a pushsrc.
2005-07-14 18:42:47 +00:00
|
|
|
gboolean segment;
|
2005-09-28 13:36:45 +00:00
|
|
|
GstClockID clock_id;
|
2002-07-30 01:25:26 +00:00
|
|
|
|
2005-07-19 12:01:53 +00:00
|
|
|
void (*make_image) (GstVideoTestSrc *v, unsigned char *dest, int w, int h);
|
2002-07-26 22:18:57 +00:00
|
|
|
};
|
|
|
|
|
2005-07-19 12:01:53 +00:00
|
|
|
struct _GstVideoTestSrcClass {
|
gst/videotestsrc/: Make videotestsrc a pushsrc.
Original commit message from CVS:
* gst/videotestsrc/Makefile.am:
* gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
(gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
(gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
(gst_videotestsrc_init), (gst_videotestsrc_event),
(gst_videotestsrc_create), (gst_videotestsrc_start),
(gst_videotestsrc_stop), (gst_videotestsrc_get_times),
(gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
(gst_videotestsrc_get_property):
* gst/videotestsrc/gstvideotestsrc.h:
Make videotestsrc a pushsrc.
2005-07-14 18:42:47 +00:00
|
|
|
GstPushSrcClass parent_class;
|
2002-07-26 22:18:57 +00:00
|
|
|
};
|
|
|
|
|
2005-07-19 12:01:53 +00:00
|
|
|
GType gst_videotestsrc_get_type (void);
|
2002-07-26 22:18:57 +00:00
|
|
|
|
2002-10-30 09:17:12 +00:00
|
|
|
G_END_DECLS
|
2004-03-15 16:32:55 +00:00
|
|
|
|
2002-07-26 22:18:57 +00:00
|
|
|
#endif /* __GST_VIDEOTESTSRC_H__ */
|