More segment updates, replace code in plugins with segment helper functions.
[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_FAKE_SRC_H__
25 #define __GST_FAKE_SRC_H__
26
27 #include <gst/gst.h>
28 #include <gst/base/gstbasesrc.h>
29
30 G_BEGIN_DECLS
31
32 typedef enum {
33   FAKE_SRC_FIRST_LAST_LOOP = 1,
34   FAKE_SRC_LAST_FIRST_LOOP,
35   FAKE_SRC_PING_PONG,
36   FAKE_SRC_ORDERED_RANDOM,
37   FAKE_SRC_RANDOM,
38   FAKE_SRC_PATTERN_LOOP,
39   FAKE_SRC_PING_PONG_PATTERN,
40   FAKE_SRC_GET_ALWAYS_SUCEEDS
41 } GstFakeSrcOutputType;
42
43 typedef enum {
44   FAKE_SRC_DATA_ALLOCATE = 1,
45   FAKE_SRC_DATA_SUBBUFFER
46 } GstFakeSrcDataType;
47
48 typedef enum {
49   FAKE_SRC_SIZETYPE_NULL = 1,
50   FAKE_SRC_SIZETYPE_FIXED,
51   FAKE_SRC_SIZETYPE_RANDOM
52 } GstFakeSrcSizeType;
53
54 typedef enum {
55   FAKE_SRC_FILLTYPE_NOTHING = 1,
56   FAKE_SRC_FILLTYPE_NULL,
57   FAKE_SRC_FILLTYPE_RANDOM,
58   FAKE_SRC_FILLTYPE_PATTERN,
59   FAKE_SRC_FILLTYPE_PATTERN_CONT
60 } GstFakeSrcFillType;
61
62 #define GST_TYPE_FAKE_SRC \
63   (gst_fake_src_get_type())
64 #define GST_FAKE_SRC(obj) \
65   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_FAKE_SRC,GstFakeSrc))
66 #define GST_FAKE_SRC_CLASS(klass) \
67   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_FAKE_SRC,GstFakeSrcClass))
68 #define GST_IS_FAKE_SRC(obj) \
69   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_FAKE_SRC))
70 #define GST_IS_FAKE_SRC_CLASS(obj) \
71   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_FAKE_SRC))
72
73 typedef struct _GstFakeSrc GstFakeSrc;
74 typedef struct _GstFakeSrcClass GstFakeSrcClass;
75
76 struct _GstFakeSrc {
77   GstBaseSrc     element;
78
79   /*< private >*/
80   gboolean       has_loop;
81   gboolean       has_getrange;
82
83   GstFakeSrcOutputType output;
84   GstFakeSrcDataType   data;
85   GstFakeSrcSizeType   sizetype;
86   GstFakeSrcFillType   filltype;
87
88   guint         sizemin;
89   guint         sizemax;
90   GstBuffer     *parent;
91   guint         parentsize;
92   guint         parentoffset;
93   guint8         pattern_byte;
94   gchar         *pattern;
95   GList         *patternlist;
96   gint           datarate;
97   gboolean       sync;
98   GstClock      *clock;
99
100   gint           num_buffers;
101   gint           rt_num_buffers; /* we are going to change this at runtime */
102   gint64         buffer_count;
103   gboolean       silent;
104   gboolean       signal_handoffs;
105   gboolean       dump;
106   gboolean       can_activate_pull;
107
108   guint64        bytes_sent;
109
110   gchar         *last_message;
111 };
112
113 struct _GstFakeSrcClass {
114   GstBaseSrcClass parent_class;
115
116   /*< public >*/
117   /* signals */
118   void (*handoff) (GstElement *element, GstBuffer *buf, GstPad *pad);
119 };
120
121 GType gst_fake_src_get_type (void);
122
123 G_END_DECLS
124
125 #endif /* __GST_FAKE_SRC_H__ */