From 7a3797f332bbcef1302829b935eff2e69c147453 Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Thu, 10 Sep 2009 09:43:28 +0300 Subject: [PATCH] docs: tell a biit more about uri-decodebin and buffering --- gst/playback/gsturidecodebin.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gst/playback/gsturidecodebin.c b/gst/playback/gsturidecodebin.c index 69af426f2c..0e0bb74576 100644 --- a/gst/playback/gsturidecodebin.c +++ b/gst/playback/gsturidecodebin.c @@ -20,7 +20,8 @@ /** * SECTION:element-uridecodebin * - * Decodes data from a URI into raw media. + * Decodes data from a URI into raw media. It selects a source element that can + * handle the given #GstURIDecodeBin:uri scheme and connects it to a decodebin2. */ #ifdef HAVE_CONFIG_H @@ -304,12 +305,12 @@ gst_uri_decode_bin_class_init (GstURIDecodeBinClass * klass) g_object_class_install_property (gobject_class, PROP_BUFFER_SIZE, g_param_spec_int ("buffer-size", "Buffer size (bytes)", - "Buffer size when buffering network streams", + "Buffer size when buffering network streams (-1 queue2 default value)", -1, G_MAXINT, DEFAULT_BUFFER_SIZE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (gobject_class, PROP_BUFFER_DURATION, g_param_spec_int64 ("buffer-duration", "Buffer duration (ns)", - "Buffer duration when buffering network streams", + "Buffer duration when buffering network streams (-1 queue2 default value)", -1, G_MAXINT64, DEFAULT_BUFFER_DURATION, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));