mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-09 17:05:52 +00:00
whitespace, comment, doc fixup
Original commit message from CVS: whitespace, comment, doc fixup
This commit is contained in:
parent
ac7251e67b
commit
38d144fcb3
4 changed files with 8 additions and 8 deletions
|
@ -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.
|
||||
*/
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue