summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2007-03-14 15:17:09 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2007-03-14 15:17:09 +0000
commit4df7b403d342d5365a8284644fba6bfd9f9ac239 (patch)
tree303ff35ff8ea12736e49f927cd71290b92c06451 /plugins
parent453591023b8f009b56e5c84637974b1199924902 (diff)
downloadgstreamer-4df7b403d342d5365a8284644fba6bfd9f9ac239.tar.gz
reformat
Original commit message from CVS: reformat
Diffstat (limited to 'plugins')
-rw-r--r--plugins/elements/gstqueue.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/elements/gstqueue.c b/plugins/elements/gstqueue.c
index 1a815ebdc0..85da6b2e38 100644
--- a/plugins/elements/gstqueue.c
+++ b/plugins/elements/gstqueue.c
@@ -273,8 +273,8 @@ gst_queue_class_init (GstQueueClass * klass)
*
* Reports that the buffer became empty (underrun).
* A buffer is empty if the total amount of data inside it (num-buffers, time,
- * size) is lower than the boundary values which can be set through the GObject
- * properties.
+ * size) is lower than the boundary values which can be set through the
+ * GObject properties.
*/
gst_queue_signals[SIGNAL_UNDERRUN] =
g_signal_new ("underrun", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST,
@@ -285,8 +285,8 @@ gst_queue_class_init (GstQueueClass * klass)
* @queue: the queue instance
*
* Reports that enough (min-threshold) data is in the queue. Use this signal
- * together with the underrun signal to pause the pipeline on underrun and wait
- * for the queue to fill-up before resume playback.
+ * together with the underrun signal to pause the pipeline on underrun and
+ * wait for the queue to fill-up before resume playback.
*/
gst_queue_signals[SIGNAL_RUNNING] =
g_signal_new ("running", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST,
@@ -298,8 +298,8 @@ gst_queue_class_init (GstQueueClass * klass)
*
* Reports that the buffer became full (overrun).
* A buffer is full if the total amount of data inside it (num-buffers, time,
- * size) is higher than the boundary values which can be set through the GObject
- * properties.
+ * size) is higher than the boundary values which can be set through the
+ * GObject properties.
*/
gst_queue_signals[SIGNAL_OVERRUN] =
g_signal_new ("overrun", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST,