whitespace, comment, doc fixup
authorThomas Vander Stichele <thomas@apestaart.org>
Mon, 8 May 2006 15:53:12 +0000 (15:53 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Mon, 8 May 2006 15:53:12 +0000 (15:53 +0000)
Original commit message from CVS:
whitespace, comment, doc fixup

gst/gstelement.c
gst/gstutils.c
libs/gst/dataprotocol/dataprotocol.c
libs/gst/dataprotocol/dataprotocol.h

index f69267a..0d037fb 100644 (file)
@@ -2643,8 +2643,8 @@ gst_element_set_bus_func (GstElement * element, GstBus * bus)
  * @element: a #GstElement to set the bus of.
  * @bus: the #GstBus to set.
  *
- * Sets the bus of the element.  For internal use only, unless you're
- * testing elements.
+ * Sets the bus of the element. Increases the refcount on the bus.
+ * For internal use only, unless you're testing elements.
  *
  * MT safe.
  */
index 1a62f7b..1a10fbf 100644 (file)
@@ -2321,7 +2321,7 @@ gst_buffer_join (GstBuffer * buf1, GstBuffer * buf2)
  * @dest: buffer to stamp
  * @src: buffer to stamp from
  *
- * Copies additional information (the timestamp, duration, and offset start 
+ * Copies additional information (the timestamp, duration, and offset start
  * and end) from one buffer to the other.
  *
  * This function does not copy any buffer flags or caps.
index 3ebcfa2..a6d5817 100644 (file)
@@ -549,7 +549,7 @@ gst_dp_validate_header (guint header_length, const guint8 * header)
   if (!(GST_DP_HEADER_FLAGS (header) & GST_DP_HEADER_FLAG_CRC_HEADER))
     return TRUE;
   crc_read = GST_DP_HEADER_CRC_HEADER (header);
-  /* don't included the last two crc fields for the crc check */
+  /* don't include the last two crc fields for the crc check */
   crc_calculated = gst_dp_crc (header, header_length - 4);
   if (crc_read != crc_calculated) {
     GST_WARNING ("header crc mismatch: read %02x, calculated %02x", crc_read,
index 912d2c4..0f60248 100644 (file)
@@ -31,23 +31,23 @@ G_BEGIN_DECLS
 
 /**
  * GST_DP_VERSION_MAJOR:
- * 
+ *
  * The major version number of the GStreamer Data Protocol.
  */
 #define GST_DP_VERSION_MAJOR 0
 /**
  * GST_DP_VERSION_MINOR:
- * 
+ *
  * The minor version number of the GStreamer Data Protocol.
  */
 #define GST_DP_VERSION_MINOR 2
 
 /**
  * GST_DP_HEADER_LENGTH:
- * 
+ *
  * The header size in bytes.
  */
-#define GST_DP_HEADER_LENGTH 62 
+#define GST_DP_HEADER_LENGTH 62
 
 /**
  * GstDPHeaderFlag: