reformat
authorThomas Vander Stichele <thomas@apestaart.org>
Wed, 14 Mar 2007 15:17:09 +0000 (15:17 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Wed, 14 Mar 2007 15:17:09 +0000 (15:17 +0000)
Original commit message from CVS:
reformat

plugins/elements/gstqueue.c

index 1a815eb..85da6b2 100644 (file)
@@ -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,