mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 17:50:36 +00:00
libs: fix indentation
This commit is contained in:
parent
512cec3dea
commit
db3ea93439
2 changed files with 6 additions and 6 deletions
|
@ -1714,12 +1714,12 @@ foreach_metadata (GstBuffer * inbuf, GstMeta ** meta, gpointer user_data)
|
|||
GstMetaTransformCopy copy_data = { FALSE, 0, -1 };
|
||||
/* simply copy then */
|
||||
if (info->transform_func) {
|
||||
GST_DEBUG_OBJECT (trans, "copy metadata %s", g_type_name (info->api));
|
||||
info->transform_func (outbuf, *meta, inbuf,
|
||||
_gst_meta_transform_copy, ©_data);
|
||||
GST_DEBUG_OBJECT (trans, "copy metadata %s", g_type_name (info->api));
|
||||
info->transform_func (outbuf, *meta, inbuf,
|
||||
_gst_meta_transform_copy, ©_data);
|
||||
} else {
|
||||
GST_DEBUG_OBJECT (trans, "couldn't copy metadata %s",
|
||||
g_type_name (info->api));
|
||||
GST_DEBUG_OBJECT (trans, "couldn't copy metadata %s",
|
||||
g_type_name (info->api));
|
||||
}
|
||||
}
|
||||
return TRUE;
|
||||
|
|
|
@ -298,7 +298,7 @@ ptp_pending_sync_free (PtpPendingSync * sync)
|
|||
{
|
||||
if (sync->timeout_source) {
|
||||
g_source_destroy (sync->timeout_source);
|
||||
g_source_unref(sync->timeout_source);
|
||||
g_source_unref (sync->timeout_source);
|
||||
}
|
||||
g_free (sync);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue