mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 04:56:24 +00:00
debugutilsbad.c fails gst-indent check
this patch is "gst-indent debugutilsbad.c" https://bugzilla.gnome.org/show_bug.cgi?id=725090
This commit is contained in:
parent
e28b6fd523
commit
ba0a3f65eb
1 changed files with 20 additions and 21 deletions
|
@ -23,33 +23,32 @@
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
|
|
||||||
GType gst_checksum_sink_get_type (void);
|
GType gst_checksum_sink_get_type(void);
|
||||||
GType fps_display_sink_get_type (void);
|
GType fps_display_sink_get_type(void);
|
||||||
GType gst_chop_my_data_get_type (void);
|
GType gst_chop_my_data_get_type(void);
|
||||||
GType gst_compare_get_type (void);
|
GType gst_compare_get_type(void);
|
||||||
GType gst_debug_spy_get_type (void);
|
GType gst_debug_spy_get_type(void);
|
||||||
GType gst_watchdog_get_type (void);
|
GType gst_watchdog_get_type(void);
|
||||||
|
|
||||||
static gboolean
|
static gboolean plugin_init(GstPlugin * plugin)
|
||||||
plugin_init (GstPlugin * plugin)
|
|
||||||
{
|
{
|
||||||
gst_element_register (plugin, "checksumsink", GST_RANK_NONE,
|
gst_element_register(plugin, "checksumsink", GST_RANK_NONE,
|
||||||
gst_checksum_sink_get_type ());
|
gst_checksum_sink_get_type());
|
||||||
gst_element_register (plugin, "fpsdisplaysink", GST_RANK_NONE,
|
gst_element_register(plugin, "fpsdisplaysink", GST_RANK_NONE,
|
||||||
fps_display_sink_get_type ());
|
fps_display_sink_get_type());
|
||||||
gst_element_register (plugin, "chopmydata", GST_RANK_NONE,
|
gst_element_register(plugin, "chopmydata", GST_RANK_NONE,
|
||||||
gst_chop_my_data_get_type ());
|
gst_chop_my_data_get_type());
|
||||||
gst_element_register (plugin, "compare", GST_RANK_NONE,
|
gst_element_register(plugin, "compare", GST_RANK_NONE,
|
||||||
gst_compare_get_type ());
|
gst_compare_get_type());
|
||||||
gst_element_register (plugin, "debugspy", GST_RANK_NONE,
|
gst_element_register(plugin, "debugspy", GST_RANK_NONE,
|
||||||
gst_debug_spy_get_type ());
|
gst_debug_spy_get_type());
|
||||||
gst_element_register (plugin, "watchdog", GST_RANK_NONE,
|
gst_element_register(plugin, "watchdog", GST_RANK_NONE,
|
||||||
gst_watchdog_get_type ());
|
gst_watchdog_get_type());
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
GST_PLUGIN_DEFINE(GST_VERSION_MAJOR,
|
||||||
GST_VERSION_MINOR,
|
GST_VERSION_MINOR,
|
||||||
debugutilsbad,
|
debugutilsbad,
|
||||||
"Collection of elements that may or may not be useful for debugging",
|
"Collection of elements that may or may not be useful for debugging",
|
||||||
|
|
Loading…
Reference in a new issue