gstreamer/libs/gst/base
Nicolas Dufresne 5ca63b7f04 basesink: Don't nest prepare/render calls
When the first buffer arrives, we endup calling:

  ->prepare()
    ->prepare()
    ->preroll()
  ->render()

This will likely confuse any element using this method. With this patch,
we ensure the preroll take place before the first render prepare() is
called. This will result in:

  ->prepare()
  ->preroll()
  ->prepare()
  ->render()

https://bugzilla.gnome.org/show_bug.cgi?id=772468
2016-11-03 13:19:46 -04:00
..
.gitignore Update a bunch of gitignores to clean up my git status output 2009-01-23 16:08:40 +00:00
base.h base: include flowcombiner header from base.h 2014-05-27 09:55:27 +01:00
gstadapter.c adapter: Fix mix-up between DTS and PTS 2016-10-21 16:47:22 +03:00
gstadapter.h adapter: Rename functions and implement new functions, update test 2016-06-10 09:49:33 +03:00
gstbaseparse.c Revert "baseparse: fix draining with less data than min frame size available" 2016-11-02 09:35:05 +02:00
gstbaseparse.h core: Add g_autoptr() support to all types 2015-12-14 12:06:55 -05:00
gstbasesink.c basesink: Don't nest prepare/render calls 2016-11-03 13:19:46 -04:00
gstbasesink.h basesink: Fix gst_base_sink_set_drop_out_of_segment() documentation 2016-11-02 16:35:59 +02:00
gstbasesrc.c Make use of the new GST_ELEMENT_FLOW_ERROR API all around. 2016-08-27 09:33:20 -03:00
gstbasesrc.h core: Add g_autoptr() support to all types 2015-12-14 12:06:55 -05:00
gstbasetransform.c Use new GST_ENABLE_EXTRA_CHECKS #define 2015-10-21 14:31:56 +03:00
gstbasetransform.h core: Add g_autoptr() support to all types 2015-12-14 12:06:55 -05:00
gstbitreader-docs.h docs: align the comments correctly with the declaration in bitreader docs 2013-01-29 15:43:05 +00:00
gstbitreader.c gi: Skip allocator of non-boxed structure 2015-06-13 13:42:58 -04:00
gstbitreader.h Fix FSF address 2012-11-03 20:44:48 +00:00
gstbytereader-docs.h Fix FSF address 2012-11-03 20:44:48 +00:00
gstbytereader.c gi: Skip allocator of non-boxed structure 2015-06-13 13:42:58 -04:00
gstbytereader.h bytereader: add gst_byte_reader_peek_sub_reader() and _get_sub_reader() 2014-08-15 10:03:26 +01:00
gstbytewriter-docs.h docs: Fix typos in function/object descriptions 2013-12-07 17:11:12 +00:00
gstbytewriter.c gi: Skip allocator of non-boxed structure 2015-06-13 13:42:58 -04:00
gstbytewriter.h docs: remove dummy function declarations with G_INLINE_FUNCTION for gtk-doc 2015-11-09 17:59:16 +00:00
gstcollectpads.c Revert "collectpads: Assume PTS is equal DTS if PTS is missing" 2016-10-24 11:54:34 -04:00
gstcollectpads.h core: Add g_autoptr() support to all types 2015-12-14 12:06:55 -05:00
gstdataqueue.c dataqueue: Fix gst_data_queue_new() description. 2014-11-06 21:09:09 +11:00
gstdataqueue.h core: Add g_autoptr() support to all types 2015-12-14 12:06:55 -05:00
gstflowcombiner.c flowcombiner: add debug category 2016-05-05 18:50:05 +01:00
gstflowcombiner.h core: Add g_autoptr() support to all types 2015-12-14 12:06:55 -05:00
gstindex.c doc: Remove gstindex from doc comment 2015-06-13 13:55:27 -04:00
gstindex.h index: mark two structs that don't have abi padding 2015-09-28 16:23:41 +02:00
gstmemindex.c Fix FSF address 2012-11-03 20:44:48 +00:00
gstpushsrc.c docs: remove outdated and pointless 'Last reviewed' lines from docs 2014-04-26 21:21:51 +01:00
gstpushsrc.h pushsrc: fix minor typos in header 2016-02-12 20:50:57 +00:00
gstqueuearray.c queuearray: allow storing of structs in addition to pointers 2015-07-04 11:03:51 +01:00
gstqueuearray.h queuearray: allow storing of structs in addition to pointers 2015-07-04 11:03:51 +01:00
gsttypefindhelper.c typefindhelper: Fix gobject-introspection warning about invalid transfer annotation 2016-04-20 11:45:28 +03:00
gsttypefindhelper.h base: use correct syntax in documentation more consistently 2014-06-06 15:09:21 -04:00
Makefile.am g-i: pass compiler env to g-ir-scanner 2016-05-24 00:40:27 +01:00
meson.build Add support for Meson as alternative/parallel build system 2016-08-19 21:26:14 +01:00
README add short/long description docs to base classes add pushsrc to the docs remove consolidated doc fragments 2005-08-03 13:30:18 +00:00

Base classes
------------

GstBaseSink
  FIXME: not much point making it operate in pull mode as a generic
  base class I guess...