mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +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
|
||||
};
|
||||
|
||||
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 };
|
||||
|
||||
|
@ -63,7 +63,7 @@ gst_color_balance_get_type (void)
|
|||
if (!gst_color_balance_type) {
|
||||
static const GTypeInfo gst_color_balance_info = {
|
||||
sizeof (GstColorBalanceInterface),
|
||||
(GBaseInitFunc) gst_color_balance_class_init,
|
||||
(GBaseInitFunc) gst_color_balance_base_init,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
|
@ -81,7 +81,7 @@ gst_color_balance_get_type (void)
|
|||
}
|
||||
|
||||
static void
|
||||
gst_color_balance_class_init (GstColorBalanceInterface * iface)
|
||||
gst_color_balance_base_init (GstColorBalanceInterface * iface)
|
||||
{
|
||||
static gboolean initialized = FALSE;
|
||||
|
||||
|
|
Loading…
Reference in a new issue