mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
libs: re-indent all GValue related source code.
This commit is contained in:
parent
9b9878c96d
commit
11b02b05e5
1 changed files with 111 additions and 110 deletions
|
@ -50,8 +50,8 @@ gst_vaapi_point_get_type(void)
|
|||
static volatile gsize g_type = 0;
|
||||
|
||||
if (g_once_init_enter (&g_type)) {
|
||||
GType type = g_boxed_type_register_static(
|
||||
g_intern_static_string("GstVaapiPoint"),
|
||||
GType type =
|
||||
g_boxed_type_register_static (g_intern_static_string ("GstVaapiPoint"),
|
||||
default_copy_func, default_free_func);
|
||||
g_once_init_leave (&g_type, type);
|
||||
}
|
||||
|
@ -66,8 +66,9 @@ gst_vaapi_rectangle_get_type(void)
|
|||
static volatile gsize g_type = 0;
|
||||
|
||||
if (g_once_init_enter (&g_type)) {
|
||||
GType type = g_boxed_type_register_static(
|
||||
g_intern_static_string("GstVaapiRectangle"),
|
||||
GType type =
|
||||
g_boxed_type_register_static (g_intern_static_string
|
||||
("GstVaapiRectangle"),
|
||||
default_copy_func, default_free_func);
|
||||
g_once_init_leave (&g_type, type);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue