gst/gstpipeline.c: Add 'Since: 0.10.5' to gtk-doc blurb for added property.

Original commit message from CVS:
* gst/gstpipeline.c: (gst_pipeline_class_init):
Add 'Since: 0.10.5' to gtk-doc blurb for added property.
* plugins/elements/gsttypefindelement.c:
(gst_type_find_element_handle_event):
Don't try to typefind empty streams.
This commit is contained in:
Tim-Philipp Müller 2006-03-14 16:32:58 +00:00
parent 926ef9413a
commit e2b2ce11f1
3 changed files with 15 additions and 2 deletions

View file

@ -1,3 +1,12 @@
2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
* gst/gstpipeline.c: (gst_pipeline_class_init):
Add 'Since: 0.10.5' to gtk-doc blurb for added property.
* plugins/elements/gsttypefindelement.c:
(gst_type_find_element_handle_event):
Don't try to typefind empty streams.
2006-03-14 Wim Taymans <wim@fluendo.com>
* libs/gst/base/gstbasesink.c: (gst_base_sink_do_sync),

View file

@ -201,6 +201,8 @@ gst_pipeline_class_init (gpointer g_class, gpointer class_data)
* The expected delay needed for elements to spin up to the
* PLAYING state expressed in nanoseconds.
* see gst_pipeline_set_delay() for more information on this option.
*
* Since: 0.10.5
**/
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_DELAY,
g_param_spec_uint64 ("delay", "Delay",

View file

@ -470,8 +470,10 @@ gst_type_find_element_handle_event (GstPad * pad, GstEvent * event)
/* we might not have started typefinding yet because there was not
* enough data so far; just give it a shot now and see what we get */
caps = gst_type_find_helper_for_buffer (GST_OBJECT (typefind),
typefind->store, &prob);
if (typefind->store) {
caps = gst_type_find_helper_for_buffer (GST_OBJECT (typefind),
typefind->store, &prob);
}
if (caps && prob >= typefind->min_probability) {
g_signal_emit (typefind, gst_type_find_element_signals[HAVE_TYPE],