From 0bda84bca1b3a518ef5cb3a0360d5941e06fe525 Mon Sep 17 00:00:00 2001 From: Michael Tretter Date: Thu, 16 Nov 2023 17:06:52 +0100 Subject: [PATCH] gst/pipewiresink: replace tabs with spaces Tabs and spaces are mixed for indentation in the pipewiresink. Replace all tabs with 8 spaces although indentation is 2 spaces, since that looks like the intended indent. --- src/gst/gstpipewiresink.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/gst/gstpipewiresink.c b/src/gst/gstpipewiresink.c index 001ede9d5..0e970f197 100644 --- a/src/gst/gstpipewiresink.c +++ b/src/gst/gstpipewiresink.c @@ -256,12 +256,12 @@ pool_activated (GstPipeWirePool *pool, GstPipeWireSink *sink) spa_pod_builder_add (&b, SPA_PARAM_BUFFERS_stride, SPA_POD_CHOICE_RANGE_Int(0, 0, INT32_MAX), SPA_PARAM_BUFFERS_buffers, SPA_POD_CHOICE_RANGE_Int( - SPA_MAX(MIN_BUFFERS, min_buffers), - SPA_MAX(MIN_BUFFERS, min_buffers), - max_buffers ? max_buffers : INT32_MAX), + SPA_MAX(MIN_BUFFERS, min_buffers), + SPA_MAX(MIN_BUFFERS, min_buffers), + max_buffers ? max_buffers : INT32_MAX), SPA_PARAM_BUFFERS_dataType, SPA_POD_CHOICE_FLAGS_Int( - (1<pool))) pool_activated (pwsink->pool, pwsink); @@ -595,8 +595,8 @@ gst_pipewire_sink_setcaps (GstBaseSink * bsink, GstCaps * caps) if (pwsink->target_object) { struct spa_dict_item items[2] = { SPA_DICT_ITEM_INIT(PW_KEY_TARGET_OBJECT, pwsink->target_object), - /* XXX deprecated but the portal and some example apps only - * provide the object id */ + /* XXX deprecated but the portal and some example apps only + * provide the object id */ SPA_DICT_ITEM_INIT(PW_KEY_NODE_TARGET, NULL), }; struct spa_dict dict = SPA_DICT_INIT_ARRAY(items);