kaya: run gst-indent

This commit is contained in:
Joshua M. Doe
2021-04-02 11:59:37 -04:00
parent 8a79fa0c0d
commit f39e48d065
3 changed files with 17 additions and 15 deletions

View File

@@ -3,27 +3,27 @@
#include "gstkayasink.h"
#include "gstkayasrc.h"
GST_DEBUG_CATEGORY_STATIC(kayaplugin_debug);
GST_DEBUG_CATEGORY_STATIC (kayaplugin_debug);
#define GST_CAT_DEFAULT kayaplugin_debug
static gboolean
plugin_init(GstPlugin* plugin)
plugin_init (GstPlugin * plugin)
{
GST_DEBUG_CATEGORY_INIT(kayaplugin_debug, "kaya", 0,
"debug category for kaya plugin");
GST_DEBUG_CATEGORY_INIT (kayaplugin_debug, "kaya", 0,
"debug category for kaya plugin");
if (!gst_element_register(plugin, "kayasink", GST_RANK_NONE,
gst_kayasink_get_type()))
return FALSE;
if (!gst_element_register (plugin, "kayasink", GST_RANK_NONE,
gst_kayasink_get_type ()))
return FALSE;
if (!gst_element_register(plugin, "kayasrc", GST_RANK_NONE,
gst_kayasrc_get_type()))
return FALSE;
if (!gst_element_register (plugin, "kayasrc", GST_RANK_NONE,
gst_kayasrc_get_type ()))
return FALSE;
return TRUE;
return TRUE;
}
GST_PLUGIN_DEFINE(GST_VERSION_MAJOR,
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
GST_VERSION_MINOR,
kaya,
"Kaya plugin",