basesrc: add async start option
[platform/upstream/gstreamer.git] / plugins / elements / gstfakesrc.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wim@fluendo.com>
4  *
5  * gstfakesrc.c:
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  * SECTION:element-fakesrc
24  * @see_also: #GstFakeSink
25  *
26  * The fakesrc element is a multipurpose element that can generate
27  * a wide range of buffers and can operate in various scheduling modes.
28  *
29  * It is mostly used as a testing element, one trivial example for testing
30  * basic <application>GStreamer</application> core functionality is:
31  *
32  * <refsect2>
33  * <title>Example launch line</title>
34  * |[
35  * gst-launch -v fakesrc num-buffers=5 ! fakesink
36  * ]| This pipeline will push 5 empty buffers to the fakesink element and then
37  * sends an EOS.
38  * </refsect2>
39  *
40  * Last reviewed on 2008-06-20 (0.10.21)
41  */
42
43 /* FIXME: this ignores basesrc::blocksize property, which could be used as an
44  * alias to ::sizemax (see gst_base_src_get_blocksize()).
45  */
46
47 #ifdef HAVE_CONFIG_H
48 #  include "config.h"
49 #endif
50
51 #include <stdlib.h>
52 #include <string.h>
53
54 #include "gstfakesrc.h"
55 #include <gst/gstmarshal.h>
56
57 static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
58     GST_PAD_SRC,
59     GST_PAD_ALWAYS,
60     GST_STATIC_CAPS_ANY);
61
62 GST_DEBUG_CATEGORY_STATIC (gst_fake_src_debug);
63 #define GST_CAT_DEFAULT gst_fake_src_debug
64
65 /* FakeSrc signals and args */
66 enum
67 {
68   /* FILL ME */
69   SIGNAL_HANDOFF,
70   LAST_SIGNAL
71 };
72
73 #define DEFAULT_OUTPUT          FAKE_SRC_FIRST_LAST_LOOP
74 #define DEFAULT_DATA            FAKE_SRC_DATA_ALLOCATE
75 #define DEFAULT_SIZETYPE        FAKE_SRC_SIZETYPE_EMPTY
76 #define DEFAULT_SIZEMIN         0
77 #define DEFAULT_SIZEMAX         4096
78 #define DEFAULT_FILLTYPE        FAKE_SRC_FILLTYPE_ZERO
79 #define DEFAULT_DATARATE        0
80 #define DEFAULT_SYNC            FALSE
81 #define DEFAULT_PATTERN         NULL
82 #define DEFAULT_EOS             FALSE
83 #define DEFAULT_SIGNAL_HANDOFFS FALSE
84 #define DEFAULT_SILENT          FALSE
85 #define DEFAULT_DUMP            FALSE
86 #define DEFAULT_PARENTSIZE      4096*10
87 #define DEFAULT_CAN_ACTIVATE_PULL TRUE
88 #define DEFAULT_CAN_ACTIVATE_PUSH TRUE
89 #define DEFAULT_FORMAT          GST_FORMAT_BYTES
90
91 enum
92 {
93   PROP_0,
94   PROP_OUTPUT,
95   PROP_DATA,
96   PROP_SIZETYPE,
97   PROP_SIZEMIN,
98   PROP_SIZEMAX,
99   PROP_FILLTYPE,
100   PROP_DATARATE,
101   PROP_SYNC,
102   PROP_PATTERN,
103   PROP_EOS,
104   PROP_SIGNAL_HANDOFFS,
105   PROP_SILENT,
106   PROP_DUMP,
107   PROP_PARENTSIZE,
108   PROP_LAST_MESSAGE,
109   PROP_CAN_ACTIVATE_PULL,
110   PROP_CAN_ACTIVATE_PUSH,
111   PROP_IS_LIVE,
112   PROP_FORMAT,
113   PROP_LAST,
114 };
115
116 /* not implemented
117 #define GST_TYPE_FAKE_SRC_OUTPUT (gst_fake_src_output_get_type())
118 static GType
119 gst_fake_src_output_get_type (void)
120 {
121   static GType fakesrc_output_type = 0;
122   static const GEnumValue fakesrc_output[] = {
123     {FAKE_SRC_FIRST_LAST_LOOP, "1", "First-Last loop"},
124     {FAKE_SRC_LAST_FIRST_LOOP, "2", "Last-First loop"},
125     {FAKE_SRC_PING_PONG, "3", "Ping-Pong"},
126     {FAKE_SRC_ORDERED_RANDOM, "4", "Ordered Random"},
127     {FAKE_SRC_RANDOM, "5", "Random"},
128     {FAKE_SRC_PATTERN_LOOP, "6", "Patttern loop"},
129     {FAKE_SRC_PING_PONG_PATTERN, "7", "Ping-Pong Pattern"},
130     {FAKE_SRC_GET_ALWAYS_SUCEEDS, "8", "'_get' Always succeeds"},
131     {0, NULL, NULL},
132   };
133
134   if (!fakesrc_output_type) {
135     fakesrc_output_type =
136         g_enum_register_static ("GstFakeSrcOutput", fakesrc_output);
137   }
138   return fakesrc_output_type;
139 }
140 */
141
142 #define GST_TYPE_FAKE_SRC_DATA (gst_fake_src_data_get_type())
143 static GType
144 gst_fake_src_data_get_type (void)
145 {
146   static GType fakesrc_data_type = 0;
147   static const GEnumValue fakesrc_data[] = {
148     {FAKE_SRC_DATA_ALLOCATE, "Allocate data", "allocate"},
149     {FAKE_SRC_DATA_SUBBUFFER, "Subbuffer data", "subbuffer"},
150     {0, NULL, NULL},
151   };
152
153   if (!fakesrc_data_type) {
154     fakesrc_data_type =
155         g_enum_register_static ("GstFakeSrcDataType", fakesrc_data);
156   }
157   return fakesrc_data_type;
158 }
159
160 #define GST_TYPE_FAKE_SRC_SIZETYPE (gst_fake_src_sizetype_get_type())
161 static GType
162 gst_fake_src_sizetype_get_type (void)
163 {
164   static GType fakesrc_sizetype_type = 0;
165   static const GEnumValue fakesrc_sizetype[] = {
166     {FAKE_SRC_SIZETYPE_EMPTY, "Send empty buffers", "empty"},
167     {FAKE_SRC_SIZETYPE_FIXED, "Fixed size buffers (sizemax sized)", "fixed"},
168     {FAKE_SRC_SIZETYPE_RANDOM,
169         "Random sized buffers (sizemin <= size <= sizemax)", "random"},
170     {0, NULL, NULL},
171   };
172
173   if (!fakesrc_sizetype_type) {
174     fakesrc_sizetype_type =
175         g_enum_register_static ("GstFakeSrcSizeType", fakesrc_sizetype);
176   }
177   return fakesrc_sizetype_type;
178 }
179
180 #define GST_TYPE_FAKE_SRC_FILLTYPE (gst_fake_src_filltype_get_type())
181 static GType
182 gst_fake_src_filltype_get_type (void)
183 {
184   static GType fakesrc_filltype_type = 0;
185   static const GEnumValue fakesrc_filltype[] = {
186     {FAKE_SRC_FILLTYPE_NOTHING, "Leave data as malloced", "nothing"},
187     {FAKE_SRC_FILLTYPE_ZERO, "Fill buffers with zeros", "zero"},
188     {FAKE_SRC_FILLTYPE_RANDOM, "Fill buffers with random crap", "random"},
189     {FAKE_SRC_FILLTYPE_PATTERN, "Fill buffers with pattern 0x00 -> 0xff",
190         "pattern"},
191     {FAKE_SRC_FILLTYPE_PATTERN_CONT,
192           "Fill buffers with pattern 0x00 -> 0xff that spans buffers",
193         "pattern-span"},
194     {0, NULL, NULL},
195   };
196
197   if (!fakesrc_filltype_type) {
198     fakesrc_filltype_type =
199         g_enum_register_static ("GstFakeSrcFillType", fakesrc_filltype);
200   }
201   return fakesrc_filltype_type;
202 }
203
204 #define _do_init \
205     GST_DEBUG_CATEGORY_INIT (gst_fake_src_debug, "fakesrc", 0, "fakesrc element");
206 #define gst_fake_src_parent_class parent_class
207 G_DEFINE_TYPE_WITH_CODE (GstFakeSrc, gst_fake_src, GST_TYPE_BASE_SRC, _do_init);
208
209 static void gst_fake_src_finalize (GObject * object);
210 static void gst_fake_src_set_property (GObject * object, guint prop_id,
211     const GValue * value, GParamSpec * pspec);
212 static void gst_fake_src_get_property (GObject * object, guint prop_id,
213     GValue * value, GParamSpec * pspec);
214
215 static gboolean gst_fake_src_start (GstBaseSrc * basesrc);
216 static gboolean gst_fake_src_stop (GstBaseSrc * basesrc);
217 static gboolean gst_fake_src_is_seekable (GstBaseSrc * basesrc);
218
219 static gboolean gst_fake_src_event_handler (GstBaseSrc * src, GstEvent * event);
220 static void gst_fake_src_get_times (GstBaseSrc * basesrc, GstBuffer * buffer,
221     GstClockTime * start, GstClockTime * end);
222 static GstFlowReturn gst_fake_src_create (GstBaseSrc * src, guint64 offset,
223     guint length, GstBuffer ** buf);
224
225 static guint gst_fake_src_signals[LAST_SIGNAL] = { 0 };
226
227 static GParamSpec *pspec_last_message = NULL;
228
229 static void
230 marshal_VOID__MINIOBJECT_OBJECT (GClosure * closure, GValue * return_value,
231     guint n_param_values, const GValue * param_values, gpointer invocation_hint,
232     gpointer marshal_data)
233 {
234   typedef void (*marshalfunc_VOID__MINIOBJECT_OBJECT) (gpointer obj,
235       gpointer arg1, gpointer arg2, gpointer data2);
236   register marshalfunc_VOID__MINIOBJECT_OBJECT callback;
237   register GCClosure *cc = (GCClosure *) closure;
238   register gpointer data1, data2;
239
240   g_return_if_fail (n_param_values == 3);
241
242   if (G_CCLOSURE_SWAP_DATA (closure)) {
243     data1 = closure->data;
244     data2 = g_value_peek_pointer (param_values + 0);
245   } else {
246     data1 = g_value_peek_pointer (param_values + 0);
247     data2 = closure->data;
248   }
249   callback =
250       (marshalfunc_VOID__MINIOBJECT_OBJECT) (marshal_data ? marshal_data :
251       cc->callback);
252
253   callback (data1, g_value_get_boxed (param_values + 1),
254       g_value_get_object (param_values + 2), data2);
255 }
256
257 static void
258 gst_fake_src_class_init (GstFakeSrcClass * klass)
259 {
260   GObjectClass *gobject_class;
261   GstElementClass *gstelement_class;
262   GstBaseSrcClass *gstbase_src_class;
263
264   gobject_class = G_OBJECT_CLASS (klass);
265   gstelement_class = GST_ELEMENT_CLASS (klass);
266   gstbase_src_class = GST_BASE_SRC_CLASS (klass);
267
268   gobject_class->finalize = gst_fake_src_finalize;
269
270   gobject_class->set_property = gst_fake_src_set_property;
271   gobject_class->get_property = gst_fake_src_get_property;
272
273 /*
274   FIXME: this is not implemented; would make sense once basesrc and fakesrc
275   support multiple pads
276   g_object_class_install_property (gobject_class, PROP_OUTPUT,
277       g_param_spec_enum ("output", "output", "Output method (currently unused)",
278           GST_TYPE_FAKE_SRC_OUTPUT, DEFAULT_OUTPUT, G_PARAM_READWRITE));
279 */
280   g_object_class_install_property (gobject_class, PROP_DATA,
281       g_param_spec_enum ("data", "data", "Data allocation method",
282           GST_TYPE_FAKE_SRC_DATA, DEFAULT_DATA,
283           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
284   g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_SIZETYPE,
285       g_param_spec_enum ("sizetype", "sizetype",
286           "How to determine buffer sizes", GST_TYPE_FAKE_SRC_SIZETYPE,
287           DEFAULT_SIZETYPE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
288   g_object_class_install_property (gobject_class, PROP_SIZEMIN,
289       g_param_spec_int ("sizemin", "sizemin", "Minimum buffer size", 0,
290           G_MAXINT, DEFAULT_SIZEMIN,
291           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
292   g_object_class_install_property (gobject_class, PROP_SIZEMAX,
293       g_param_spec_int ("sizemax", "sizemax", "Maximum buffer size", 0,
294           G_MAXINT, DEFAULT_SIZEMAX,
295           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
296   g_object_class_install_property (gobject_class, PROP_PARENTSIZE,
297       g_param_spec_int ("parentsize", "parentsize",
298           "Size of parent buffer for sub-buffered allocation", 0, G_MAXINT,
299           DEFAULT_PARENTSIZE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
300   g_object_class_install_property (gobject_class, PROP_FILLTYPE,
301       g_param_spec_enum ("filltype", "filltype",
302           "How to fill the buffer, if at all", GST_TYPE_FAKE_SRC_FILLTYPE,
303           DEFAULT_FILLTYPE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
304   g_object_class_install_property (gobject_class, PROP_DATARATE,
305       g_param_spec_int ("datarate", "Datarate",
306           "Timestamps buffers with number of bytes per second (0 = none)", 0,
307           G_MAXINT, DEFAULT_DATARATE,
308           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
309   g_object_class_install_property (gobject_class, PROP_SYNC,
310       g_param_spec_boolean ("sync", "Sync", "Sync to the clock to the datarate",
311           DEFAULT_SYNC, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
312   g_object_class_install_property (gobject_class, PROP_PATTERN,
313       g_param_spec_string ("pattern", "pattern", "pattern", DEFAULT_PATTERN,
314           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
315   pspec_last_message = g_param_spec_string ("last-message", "last-message",
316       "The last status message", NULL,
317       G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
318   g_object_class_install_property (gobject_class, PROP_LAST_MESSAGE,
319       pspec_last_message);
320   g_object_class_install_property (gobject_class, PROP_SILENT,
321       g_param_spec_boolean ("silent", "Silent",
322           "Don't produce last_message events", DEFAULT_SILENT,
323           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
324   g_object_class_install_property (gobject_class, PROP_SIGNAL_HANDOFFS,
325       g_param_spec_boolean ("signal-handoffs", "Signal handoffs",
326           "Send a signal before pushing the buffer", DEFAULT_SIGNAL_HANDOFFS,
327           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
328   g_object_class_install_property (gobject_class, PROP_DUMP,
329       g_param_spec_boolean ("dump", "Dump", "Dump buffer contents to stdout",
330           DEFAULT_DUMP, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
331   g_object_class_install_property (gobject_class, PROP_CAN_ACTIVATE_PUSH,
332       g_param_spec_boolean ("can-activate-push", "Can activate push",
333           "Can activate in push mode", DEFAULT_CAN_ACTIVATE_PUSH,
334           G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
335   g_object_class_install_property (gobject_class, PROP_CAN_ACTIVATE_PULL,
336       g_param_spec_boolean ("can-activate-pull", "Can activate pull",
337           "Can activate in pull mode", DEFAULT_CAN_ACTIVATE_PULL,
338           G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
339   g_object_class_install_property (gobject_class, PROP_IS_LIVE,
340       g_param_spec_boolean ("is-live", "Is this a live source",
341           "True if the element cannot produce data in PAUSED", FALSE,
342           G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
343   /**
344    * GstFakeSrc:format
345    *
346    * Set the format of the newsegment events to produce.
347    *
348    * Since: 0.10.20
349    */
350   g_object_class_install_property (gobject_class, PROP_FORMAT,
351       g_param_spec_enum ("format", "Format",
352           "The format of the segment events", GST_TYPE_FORMAT,
353           DEFAULT_FORMAT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
354
355   /**
356    * GstFakeSrc::handoff:
357    * @fakesrc: the fakesrc instance
358    * @buffer: the buffer that will be pushed
359    * @pad: the pad that will sent it
360    *
361    * This signal gets emitted before sending the buffer.
362    */
363   gst_fake_src_signals[SIGNAL_HANDOFF] =
364       g_signal_new ("handoff", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
365       G_STRUCT_OFFSET (GstFakeSrcClass, handoff), NULL, NULL,
366       marshal_VOID__MINIOBJECT_OBJECT, G_TYPE_NONE, 2, GST_TYPE_BUFFER,
367       GST_TYPE_PAD);
368
369   gst_element_class_set_details_simple (gstelement_class,
370       "Fake Source",
371       "Source",
372       "Push empty (no data) buffers around",
373       "Erik Walthinsen <omega@cse.ogi.edu>, " "Wim Taymans <wim@fluendo.com>");
374   gst_element_class_add_pad_template (gstelement_class,
375       gst_static_pad_template_get (&srctemplate));
376
377   gstbase_src_class->is_seekable = GST_DEBUG_FUNCPTR (gst_fake_src_is_seekable);
378   gstbase_src_class->start = GST_DEBUG_FUNCPTR (gst_fake_src_start);
379   gstbase_src_class->stop = GST_DEBUG_FUNCPTR (gst_fake_src_stop);
380   gstbase_src_class->event = GST_DEBUG_FUNCPTR (gst_fake_src_event_handler);
381   gstbase_src_class->get_times = GST_DEBUG_FUNCPTR (gst_fake_src_get_times);
382   gstbase_src_class->create = GST_DEBUG_FUNCPTR (gst_fake_src_create);
383 }
384
385 static void
386 gst_fake_src_init (GstFakeSrc * fakesrc)
387 {
388   fakesrc->output = FAKE_SRC_FIRST_LAST_LOOP;
389   fakesrc->buffer_count = 0;
390   fakesrc->silent = DEFAULT_SILENT;
391   fakesrc->signal_handoffs = DEFAULT_SIGNAL_HANDOFFS;
392   fakesrc->dump = DEFAULT_DUMP;
393   fakesrc->pattern_byte = 0x00;
394   fakesrc->data = FAKE_SRC_DATA_ALLOCATE;
395   fakesrc->sizetype = FAKE_SRC_SIZETYPE_EMPTY;
396   fakesrc->filltype = FAKE_SRC_FILLTYPE_NOTHING;
397   fakesrc->sizemin = DEFAULT_SIZEMIN;
398   fakesrc->sizemax = DEFAULT_SIZEMAX;
399   fakesrc->parent = NULL;
400   fakesrc->parentsize = DEFAULT_PARENTSIZE;
401   fakesrc->last_message = NULL;
402   fakesrc->datarate = DEFAULT_DATARATE;
403   fakesrc->sync = DEFAULT_SYNC;
404   fakesrc->format = DEFAULT_FORMAT;
405 }
406
407 static void
408 gst_fake_src_finalize (GObject * object)
409 {
410   GstFakeSrc *src;
411
412   src = GST_FAKE_SRC (object);
413
414   g_free (src->last_message);
415   if (src->parent) {
416     gst_buffer_unref (src->parent);
417     src->parent = NULL;
418   }
419
420   G_OBJECT_CLASS (parent_class)->finalize (object);
421 }
422
423 static gboolean
424 gst_fake_src_event_handler (GstBaseSrc * basesrc, GstEvent * event)
425 {
426   GstFakeSrc *src;
427
428   src = GST_FAKE_SRC (basesrc);
429
430   if (!src->silent) {
431     const GstStructure *s;
432     gchar *sstr;
433
434     GST_OBJECT_LOCK (src);
435     g_free (src->last_message);
436
437     if ((s = gst_event_get_structure (event)))
438       sstr = gst_structure_to_string (s);
439     else
440       sstr = g_strdup ("");
441
442     src->last_message =
443         g_strdup_printf ("event   ******* E (type: %d, %s) %p",
444         GST_EVENT_TYPE (event), sstr, event);
445     g_free (sstr);
446     GST_OBJECT_UNLOCK (src);
447
448 #if !GLIB_CHECK_VERSION(2,26,0)
449     g_object_notify ((GObject *) src, "last-message");
450 #else
451     g_object_notify_by_pspec ((GObject *) src, pspec_last_message);
452 #endif
453   }
454
455   return GST_BASE_SRC_CLASS (parent_class)->event (basesrc, event);
456 }
457
458 static void
459 gst_fake_src_alloc_parent (GstFakeSrc * src)
460 {
461   GstBuffer *buf;
462
463   buf = gst_buffer_new_allocate (NULL, src->parentsize, 0);
464
465   src->parent = buf;
466   src->parentoffset = 0;
467 }
468
469 static void
470 gst_fake_src_set_property (GObject * object, guint prop_id,
471     const GValue * value, GParamSpec * pspec)
472 {
473   GstFakeSrc *src;
474   GstBaseSrc *basesrc;
475
476   src = GST_FAKE_SRC (object);
477   basesrc = GST_BASE_SRC (object);
478
479   switch (prop_id) {
480     case PROP_OUTPUT:
481       g_warning ("not yet implemented");
482       break;
483     case PROP_DATA:
484       src->data = g_value_get_enum (value);
485
486       if (src->data == FAKE_SRC_DATA_SUBBUFFER) {
487         if (!src->parent)
488           gst_fake_src_alloc_parent (src);
489       } else {
490         if (src->parent) {
491           gst_buffer_unref (src->parent);
492           src->parent = NULL;
493         }
494       }
495       break;
496     case PROP_SIZETYPE:
497       src->sizetype = g_value_get_enum (value);
498       break;
499     case PROP_SIZEMIN:
500       src->sizemin = g_value_get_int (value);
501       break;
502     case PROP_SIZEMAX:
503       src->sizemax = g_value_get_int (value);
504       break;
505     case PROP_PARENTSIZE:
506       src->parentsize = g_value_get_int (value);
507       break;
508     case PROP_FILLTYPE:
509       src->filltype = g_value_get_enum (value);
510       break;
511     case PROP_DATARATE:
512       src->datarate = g_value_get_int (value);
513       break;
514     case PROP_SYNC:
515       src->sync = g_value_get_boolean (value);
516       break;
517     case PROP_PATTERN:
518       break;
519     case PROP_SILENT:
520       src->silent = g_value_get_boolean (value);
521       break;
522     case PROP_SIGNAL_HANDOFFS:
523       src->signal_handoffs = g_value_get_boolean (value);
524       break;
525     case PROP_DUMP:
526       src->dump = g_value_get_boolean (value);
527       break;
528     case PROP_CAN_ACTIVATE_PUSH:
529       g_return_if_fail (!GST_OBJECT_FLAG_IS_SET (object,
530               GST_BASE_SRC_FLAG_STARTED));
531       GST_BASE_SRC (src)->can_activate_push = g_value_get_boolean (value);
532       break;
533     case PROP_CAN_ACTIVATE_PULL:
534       g_return_if_fail (!GST_OBJECT_FLAG_IS_SET (object,
535               GST_BASE_SRC_FLAG_STARTED));
536       src->can_activate_pull = g_value_get_boolean (value);
537       break;
538     case PROP_IS_LIVE:
539       gst_base_src_set_live (basesrc, g_value_get_boolean (value));
540       break;
541     case PROP_FORMAT:
542       src->format = g_value_get_enum (value);
543       break;
544     default:
545       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
546       break;
547   }
548 }
549
550 static void
551 gst_fake_src_get_property (GObject * object, guint prop_id, GValue * value,
552     GParamSpec * pspec)
553 {
554   GstFakeSrc *src;
555   GstBaseSrc *basesrc;
556
557   g_return_if_fail (GST_IS_FAKE_SRC (object));
558
559   src = GST_FAKE_SRC (object);
560   basesrc = GST_BASE_SRC (object);
561
562   switch (prop_id) {
563     case PROP_OUTPUT:
564       g_value_set_enum (value, src->output);
565       break;
566     case PROP_DATA:
567       g_value_set_enum (value, src->data);
568       break;
569     case PROP_SIZETYPE:
570       g_value_set_enum (value, src->sizetype);
571       break;
572     case PROP_SIZEMIN:
573       g_value_set_int (value, src->sizemin);
574       break;
575     case PROP_SIZEMAX:
576       g_value_set_int (value, src->sizemax);
577       break;
578     case PROP_PARENTSIZE:
579       g_value_set_int (value, src->parentsize);
580       break;
581     case PROP_FILLTYPE:
582       g_value_set_enum (value, src->filltype);
583       break;
584     case PROP_DATARATE:
585       g_value_set_int (value, src->datarate);
586       break;
587     case PROP_SYNC:
588       g_value_set_boolean (value, src->sync);
589       break;
590     case PROP_PATTERN:
591       g_value_set_string (value, src->pattern);
592       break;
593     case PROP_SILENT:
594       g_value_set_boolean (value, src->silent);
595       break;
596     case PROP_SIGNAL_HANDOFFS:
597       g_value_set_boolean (value, src->signal_handoffs);
598       break;
599     case PROP_DUMP:
600       g_value_set_boolean (value, src->dump);
601       break;
602     case PROP_LAST_MESSAGE:
603       GST_OBJECT_LOCK (src);
604       g_value_set_string (value, src->last_message);
605       GST_OBJECT_UNLOCK (src);
606       break;
607     case PROP_CAN_ACTIVATE_PUSH:
608       g_value_set_boolean (value, GST_BASE_SRC (src)->can_activate_push);
609       break;
610     case PROP_CAN_ACTIVATE_PULL:
611       g_value_set_boolean (value, src->can_activate_pull);
612       break;
613     case PROP_IS_LIVE:
614       g_value_set_boolean (value, gst_base_src_is_live (basesrc));
615       break;
616     case PROP_FORMAT:
617       g_value_set_enum (value, src->format);
618       break;
619     default:
620       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
621       break;
622   }
623 }
624
625 static void
626 gst_fake_src_prepare_buffer (GstFakeSrc * src, guint8 * data, gsize size)
627 {
628   if (size == 0)
629     return;
630
631   switch (src->filltype) {
632     case FAKE_SRC_FILLTYPE_ZERO:
633       memset (data, 0, size);
634       break;
635     case FAKE_SRC_FILLTYPE_RANDOM:
636     {
637       gint i;
638       guint8 *ptr = data;
639
640       for (i = size; i; i--) {
641         *ptr++ = g_random_int_range (0, 256);
642       }
643       break;
644     }
645     case FAKE_SRC_FILLTYPE_PATTERN:
646       src->pattern_byte = 0x00;
647     case FAKE_SRC_FILLTYPE_PATTERN_CONT:
648     {
649       gint i;
650       guint8 *ptr = data;
651
652       for (i = size; i; i--) {
653         *ptr++ = src->pattern_byte++;
654       }
655       break;
656     }
657     case FAKE_SRC_FILLTYPE_NOTHING:
658     default:
659       break;
660   }
661 }
662
663 static GstBuffer *
664 gst_fake_src_alloc_buffer (GstFakeSrc * src, guint size)
665 {
666   GstBuffer *buf;
667   gpointer data;
668   gboolean do_prepare = FALSE;
669
670   buf = gst_buffer_new ();
671
672   if (size != 0) {
673     switch (src->filltype) {
674       case FAKE_SRC_FILLTYPE_NOTHING:
675         data = g_malloc (size);
676         break;
677       case FAKE_SRC_FILLTYPE_ZERO:
678         data = g_malloc0 (size);
679         break;
680       case FAKE_SRC_FILLTYPE_RANDOM:
681       case FAKE_SRC_FILLTYPE_PATTERN:
682       case FAKE_SRC_FILLTYPE_PATTERN_CONT:
683       default:
684         data = g_malloc (size);
685         do_prepare = TRUE;
686         break;
687     }
688     if (do_prepare)
689       gst_fake_src_prepare_buffer (src, data, size);
690
691     gst_buffer_take_memory (buf, -1,
692         gst_memory_new_wrapped (0, data, g_free, size, 0, size));
693   }
694
695   return buf;
696 }
697
698 static guint
699 gst_fake_src_get_size (GstFakeSrc * src)
700 {
701   guint size;
702
703   switch (src->sizetype) {
704     case FAKE_SRC_SIZETYPE_FIXED:
705       size = src->sizemax;
706       break;
707     case FAKE_SRC_SIZETYPE_RANDOM:
708       size = g_random_int_range (src->sizemin, src->sizemax);
709       break;
710     case FAKE_SRC_SIZETYPE_EMPTY:
711     default:
712       size = 0;
713       break;
714   }
715
716   return size;
717 }
718
719 static GstBuffer *
720 gst_fake_src_create_buffer (GstFakeSrc * src, gsize * bufsize)
721 {
722   GstBuffer *buf;
723   gsize size = gst_fake_src_get_size (src);
724   gboolean dump = src->dump;
725   guint8 *data;
726
727   *bufsize = size;
728
729   switch (src->data) {
730     case FAKE_SRC_DATA_ALLOCATE:
731       buf = gst_fake_src_alloc_buffer (src, size);
732       break;
733     case FAKE_SRC_DATA_SUBBUFFER:
734       /* see if we have a parent to subbuffer */
735       if (!src->parent) {
736         gst_fake_src_alloc_parent (src);
737         g_assert (src->parent);
738       }
739       /* see if it's large enough */
740       if ((src->parentsize - src->parentoffset) >= size) {
741         buf =
742             gst_buffer_copy_region (src->parent, GST_BUFFER_COPY_ALL,
743             src->parentoffset, size);
744         src->parentoffset += size;
745       } else {
746         /* the parent is useless now */
747         gst_buffer_unref (src->parent);
748         src->parent = NULL;
749         /* try again (this will allocate a new parent) */
750         return gst_fake_src_create_buffer (src, bufsize);
751       }
752       data = gst_buffer_map (buf, &size, NULL, GST_MAP_WRITE);
753       gst_fake_src_prepare_buffer (src, data, size);
754       gst_buffer_unmap (buf, data, size);
755       break;
756     default:
757       g_warning ("fakesrc: dunno how to allocate buffers !");
758       buf = gst_buffer_new ();
759       break;
760   }
761   if (dump) {
762     data = gst_buffer_map (buf, &size, NULL, GST_MAP_READ);
763     gst_util_dump_mem (data, size);
764     gst_buffer_unmap (buf, data, size);
765   }
766
767   return buf;
768 }
769
770 static void
771 gst_fake_src_get_times (GstBaseSrc * basesrc, GstBuffer * buffer,
772     GstClockTime * start, GstClockTime * end)
773 {
774   GstFakeSrc *src;
775
776   src = GST_FAKE_SRC (basesrc);
777
778   /* sync on the timestamp of the buffer if requested. */
779   if (src->sync) {
780     GstClockTime timestamp = GST_BUFFER_TIMESTAMP (buffer);
781
782     if (GST_CLOCK_TIME_IS_VALID (timestamp)) {
783       /* get duration to calculate end time */
784       GstClockTime duration = GST_BUFFER_DURATION (buffer);
785
786       if (GST_CLOCK_TIME_IS_VALID (duration)) {
787         *end = timestamp + duration;
788       }
789       *start = timestamp;
790     }
791   } else {
792     *start = -1;
793     *end = -1;
794   }
795 }
796
797 static GstFlowReturn
798 gst_fake_src_create (GstBaseSrc * basesrc, guint64 offset, guint length,
799     GstBuffer ** ret)
800 {
801   GstFakeSrc *src;
802   GstBuffer *buf;
803   GstClockTime time;
804   gsize size;
805
806   src = GST_FAKE_SRC (basesrc);
807
808   buf = gst_fake_src_create_buffer (src, &size);
809   GST_BUFFER_OFFSET (buf) = src->buffer_count++;
810
811   if (src->datarate > 0) {
812     time = (src->bytes_sent * GST_SECOND) / src->datarate;
813
814     GST_BUFFER_DURATION (buf) = size * GST_SECOND / src->datarate;
815   } else if (gst_base_src_is_live (basesrc)) {
816     GstClock *clock;
817
818     clock = gst_element_get_clock (GST_ELEMENT (src));
819
820     if (clock) {
821       time = gst_clock_get_time (clock);
822       time -= gst_element_get_base_time (GST_ELEMENT (src));
823       gst_object_unref (clock);
824     } else {
825       /* not an error not to have a clock */
826       time = GST_CLOCK_TIME_NONE;
827     }
828   } else {
829     time = GST_CLOCK_TIME_NONE;
830   }
831
832   GST_BUFFER_TIMESTAMP (buf) = time;
833
834   if (!src->silent) {
835     gchar ts_str[64], dur_str[64];
836
837     GST_OBJECT_LOCK (src);
838     g_free (src->last_message);
839
840     if (GST_BUFFER_TIMESTAMP (buf) != GST_CLOCK_TIME_NONE) {
841       g_snprintf (ts_str, sizeof (ts_str), "%" GST_TIME_FORMAT,
842           GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buf)));
843     } else {
844       g_strlcpy (ts_str, "none", sizeof (ts_str));
845     }
846
847     if (GST_BUFFER_DURATION (buf) != GST_CLOCK_TIME_NONE) {
848       g_snprintf (dur_str, sizeof (dur_str), "%" GST_TIME_FORMAT,
849           GST_TIME_ARGS (GST_BUFFER_DURATION (buf)));
850     } else {
851       g_strlcpy (dur_str, "none", sizeof (dur_str));
852     }
853
854     src->last_message =
855         g_strdup_printf ("get      ******* > (%5d bytes, timestamp: %s"
856         ", duration: %s, offset: %" G_GINT64_FORMAT ", offset_end: %"
857         G_GINT64_FORMAT ", flags: %d) %p", (gint) size, ts_str,
858         dur_str, GST_BUFFER_OFFSET (buf), GST_BUFFER_OFFSET_END (buf),
859         GST_MINI_OBJECT_CAST (buf)->flags, buf);
860     GST_OBJECT_UNLOCK (src);
861
862 #if !GLIB_CHECK_VERSION(2,26,0)
863     g_object_notify ((GObject *) src, "last-message");
864 #else
865     g_object_notify_by_pspec ((GObject *) src, pspec_last_message);
866 #endif
867   }
868
869   if (src->signal_handoffs) {
870     GST_LOG_OBJECT (src, "pre handoff emit");
871     g_signal_emit (src, gst_fake_src_signals[SIGNAL_HANDOFF], 0, buf,
872         basesrc->srcpad);
873     GST_LOG_OBJECT (src, "post handoff emit");
874   }
875
876   src->bytes_sent += size;
877
878   *ret = buf;
879   return GST_FLOW_OK;
880 }
881
882 static gboolean
883 gst_fake_src_start (GstBaseSrc * basesrc)
884 {
885   GstFakeSrc *src;
886
887   src = GST_FAKE_SRC (basesrc);
888
889   src->buffer_count = 0;
890   src->pattern_byte = 0x00;
891   src->bytes_sent = 0;
892
893   gst_base_src_set_format (basesrc, src->format);
894
895   return TRUE;
896 }
897
898 static gboolean
899 gst_fake_src_stop (GstBaseSrc * basesrc)
900 {
901   GstFakeSrc *src;
902
903   src = GST_FAKE_SRC (basesrc);
904
905   GST_OBJECT_LOCK (src);
906   if (src->parent) {
907     gst_buffer_unref (src->parent);
908     src->parent = NULL;
909   }
910   g_free (src->last_message);
911   src->last_message = NULL;
912   GST_OBJECT_UNLOCK (src);
913
914   return TRUE;
915 }
916
917 static gboolean
918 gst_fake_src_is_seekable (GstBaseSrc * basesrc)
919 {
920   GstFakeSrc *src = GST_FAKE_SRC (basesrc);
921
922   return src->can_activate_pull;
923 }