*.h: Revert indentation changes.
[platform/upstream/gstreamer.git] / plugins / elements / gstfakesrc.h
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gstfakesrc.h: 
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23
24 #ifndef __GST_FAKESRC_H__
25 #define __GST_FAKESRC_H__
26
27 #include <gst/gst.h>
28
29 G_BEGIN_DECLS typedef enum
30 {
31   FAKESRC_FIRST_LAST_LOOP = 1,
32   FAKESRC_LAST_FIRST_LOOP,
33   FAKESRC_PING_PONG,
34   FAKESRC_ORDERED_RANDOM,
35   FAKESRC_RANDOM,
36   FAKESRC_PATTERN_LOOP,
37   FAKESRC_PING_PONG_PATTERN,
38   FAKESRC_GET_ALWAYS_SUCEEDS
39 }
40 GstFakeSrcOutputType;
41
42 typedef enum
43 {
44   FAKESRC_DATA_ALLOCATE = 1,
45   FAKESRC_DATA_SUBBUFFER,
46 }
47 GstFakeSrcDataType;
48
49 typedef enum
50 {
51   FAKESRC_SIZETYPE_NULL = 1,
52   FAKESRC_SIZETYPE_FIXED,
53   FAKESRC_SIZETYPE_RANDOM
54 }
55 GstFakeSrcSizeType;
56
57 typedef enum
58 {
59   FAKESRC_FILLTYPE_NOTHING = 1,
60   FAKESRC_FILLTYPE_NULL,
61   FAKESRC_FILLTYPE_RANDOM,
62   FAKESRC_FILLTYPE_PATTERN,
63   FAKESRC_FILLTYPE_PATTERN_CONT
64 }
65 GstFakeSrcFillType;
66
67 #define GST_TYPE_FAKESRC \
68   (gst_fakesrc_get_type())
69 #define GST_FAKESRC(obj) \
70   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_FAKESRC,GstFakeSrc))
71 #define GST_FAKESRC_CLASS(klass) \
72   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_FAKESRC,GstFakeSrcClass))
73 #define GST_IS_FAKESRC(obj) \
74   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_FAKESRC))
75 #define GST_IS_FAKESRC_CLASS(obj) \
76   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_FAKESRC))
77
78 typedef struct _GstFakeSrc GstFakeSrc;
79 typedef struct _GstFakeSrcClass GstFakeSrcClass;
80
81 struct _GstFakeSrc
82 {
83   GstElement element;
84
85   gboolean loop_based;
86   gboolean eos;
87
88   GstFakeSrcOutputType output;
89   GstFakeSrcDataType data;
90   GstFakeSrcSizeType sizetype;
91   GstFakeSrcFillType filltype;
92
93   guint sizemin;
94   guint sizemax;
95   GstBuffer *parent;
96   guint parentsize;
97   guint parentoffset;
98   guint8 pattern_byte;
99   gchar *pattern;
100   GList *patternlist;
101   gint64 segment_start;
102   gint64 segment_end;
103   gboolean segment_loop;
104   gint num_buffers;
105   gint rt_num_buffers;          /* we are going to change this at runtime */
106   guint64 buffer_count;
107   gboolean silent;
108   gboolean signal_handoffs;
109   gboolean dump;
110   gboolean need_flush;
111
112   gchar *last_message;
113 };
114
115 struct _GstFakeSrcClass
116 {
117   GstElementClass parent_class;
118
119   /* signals */
120   void (*handoff) (GstElement * element, GstBuffer * buf, GstPad * pad);
121 };
122
123 GType gst_fakesrc_get_type (void);
124
125 gboolean gst_fakesrc_factory_init (GstElementFactory * factory);
126
127 G_END_DECLS
128 #endif /* __GST_FAKESRC_H__ */