summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sf.net>2009-09-10 09:43:28 +0300
committerStefan Kost <ensonic@users.sf.net>2009-09-10 10:30:23 +0300
commit7a3797f332bbcef1302829b935eff2e69c147453 (patch)
tree026c8b21cf5379352525ad0baedc9527f884e49e
parent06be2b8632ceb0b5db560a68de77c08476687547 (diff)
docs: tell a biit more about uri-decodebin and buffering
-rw-r--r--gst/playback/gsturidecodebin.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gst/playback/gsturidecodebin.c b/gst/playback/gsturidecodebin.c
index 69af426f2..0e0bb7457 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));