Lots of new goodness. Will negotiate caps and output images in about 20 different...
[platform/upstream/gstreamer.git] / gst / videotestsrc / gstvideotestsrc.h
1 /* GStreamer
2  * Copyright (C) <2002> David A. Schleef <ds@schleef.org>
3  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21
22 #ifndef __GST_VIDEOTESTSRC_H__
23 #define __GST_VIDEOTESTSRC_H__
24
25
26 #include <config.h>
27 #include <gst/gst.h>
28
29
30 #ifdef __cplusplus
31 extern "C" {
32 #endif /* __cplusplus */
33
34
35 #define GST_TYPE_VIDEOTESTSRC \
36   (gst_videotestsrc_get_type())
37 #define GST_VIDEOTESTSRC(obj) \
38   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_VIDEOTESTSRC,GstVideotestsrc))
39 #define GST_VIDEOTESTSRC_CLASS(klass) \
40   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_VIDEOTESTSRC,GstVideotestsrc))
41 #define GST_IS_VIDEOTESTSRC(obj) \
42   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VIDEOTESTSRC))
43 #define GST_IS_VIDEOTESTSRC_CLASS(obj) \
44   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VIDEOTESTSRC))
45
46 typedef enum {
47   GST_VIDEOTESTSRC_POINT_SAMPLE,
48   GST_VIDEOTESTSRC_NEAREST,
49   GST_VIDEOTESTSRC_BILINEAR,
50   GST_VIDEOTESTSRC_BICUBIC
51 } GstVideoTestSrcMethod;
52
53 typedef struct _GstVideotestsrc GstVideotestsrc;
54 typedef struct _GstVideotestsrcClass GstVideotestsrcClass;
55
56 struct _GstVideotestsrc {
57   GstElement element;
58
59   GstPad *sinkpad,*srcpad;
60
61   /* video state */
62   guint32 format;
63   gint width;
64   gint height;
65   gint forced_format;
66   
67   /* private */
68   gint64 timestamp;
69   gint64 interval;
70   gint bpp;
71
72   GstBufferPool *pool;
73
74   void (*make_image)(GstVideotestsrc *v, unsigned char *dest, int w, int h);
75 };
76
77 struct _GstVideotestsrcClass {
78   GstElementClass parent_class;
79 };
80
81 static GType gst_videotestsrc_get_type(void);
82
83 static void gst_videotestsrc_setup(GstVideotestsrc *);
84
85 #ifdef __cplusplus
86 }
87 #endif /* __cplusplus */
88
89
90 #endif /* __GST_VIDEOTESTSRC_H__ */