summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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,