mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-09-03 10:43:55 +00:00
colorbalance: Fix the typo in base_init().
This commit is contained in:
parent
38790e5757
commit
c9e65dbccc
1 changed files with 3 additions and 3 deletions
|
@ -51,7 +51,7 @@ enum
|
||||||
LAST_SIGNAL
|
LAST_SIGNAL
|
||||||
};
|
};
|
||||||
|
|
||||||
static void gst_color_balance_class_init (GstColorBalanceInterface * iface);
|
static void gst_color_balance_base_init (GstColorBalanceInterface * iface);
|
||||||
|
|
||||||
static guint gst_color_balance_signals[LAST_SIGNAL] = { 0 };
|
static guint gst_color_balance_signals[LAST_SIGNAL] = { 0 };
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ gst_color_balance_get_type (void)
|
||||||
if (!gst_color_balance_type) {
|
if (!gst_color_balance_type) {
|
||||||
static const GTypeInfo gst_color_balance_info = {
|
static const GTypeInfo gst_color_balance_info = {
|
||||||
sizeof (GstColorBalanceInterface),
|
sizeof (GstColorBalanceInterface),
|
||||||
(GBaseInitFunc) gst_color_balance_class_init,
|
(GBaseInitFunc) gst_color_balance_base_init,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
|
@ -81,7 +81,7 @@ gst_color_balance_get_type (void)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
gst_color_balance_class_init (GstColorBalanceInterface * iface)
|
gst_color_balance_base_init (GstColorBalanceInterface * iface)
|
||||||
{
|
{
|
||||||
static gboolean initialized = FALSE;
|
static gboolean initialized = FALSE;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue