mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-07 07:55:41 +00:00
don't mix tabs and spaces
Original commit message from CVS: don't mix tabs and spaces
This commit is contained in:
parent
44f714a5fd
commit
f88ab240e5
2 changed files with 155 additions and 151 deletions
|
@ -106,6 +106,7 @@ gst_jack_get_type (void)
|
||||||
0,
|
0,
|
||||||
NULL,
|
NULL,
|
||||||
};
|
};
|
||||||
|
|
||||||
jack_type =
|
jack_type =
|
||||||
g_type_register_static (GST_TYPE_ELEMENT, "GstJack", &jack_info, 0);
|
g_type_register_static (GST_TYPE_ELEMENT, "GstJack", &jack_info, 0);
|
||||||
}
|
}
|
||||||
|
@ -129,6 +130,7 @@ gst_jack_sink_get_type (void)
|
||||||
0,
|
0,
|
||||||
(GInstanceInitFunc) gst_jack_init,
|
(GInstanceInitFunc) gst_jack_init,
|
||||||
};
|
};
|
||||||
|
|
||||||
jack_type =
|
jack_type =
|
||||||
g_type_register_static (GST_TYPE_JACK, "GstJackSink", &jack_info, 0);
|
g_type_register_static (GST_TYPE_JACK, "GstJackSink", &jack_info, 0);
|
||||||
}
|
}
|
||||||
|
@ -152,6 +154,7 @@ gst_jack_src_get_type (void)
|
||||||
0,
|
0,
|
||||||
(GInstanceInitFunc) gst_jack_init,
|
(GInstanceInitFunc) gst_jack_init,
|
||||||
};
|
};
|
||||||
|
|
||||||
jack_type =
|
jack_type =
|
||||||
g_type_register_static (GST_TYPE_JACK, "GstJackSrc", &jack_info, 0);
|
g_type_register_static (GST_TYPE_JACK, "GstJackSrc", &jack_info, 0);
|
||||||
}
|
}
|
||||||
|
|
|
@ -64,6 +64,7 @@ gst_jack_bin_get_type (void)
|
||||||
0,
|
0,
|
||||||
(GInstanceInitFunc) gst_jack_bin_init,
|
(GInstanceInitFunc) gst_jack_bin_init,
|
||||||
};
|
};
|
||||||
|
|
||||||
jack_bin_type =
|
jack_bin_type =
|
||||||
g_type_register_static (GST_TYPE_BIN, "GstJackBin", &jack_bin_info, 0);
|
g_type_register_static (GST_TYPE_BIN, "GstJackBin", &jack_bin_info, 0);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue