Home
last modified time | relevance | path

Searched refs:n_params_alloc (Results 1 – 1 of 1) sorted by relevance

/third_party/gstreamer/gstreamer/gst/
Dgstelementfactory.c393 guint n_params_alloc = 16; in gst_element_factory_property_valist_to_array() local
407 names_array = g_new0 (const gchar *, n_params_alloc); in gst_element_factory_property_valist_to_array()
408 values_array = g_new0 (GValue, n_params_alloc); in gst_element_factory_property_valist_to_array()
418 if (G_UNLIKELY (n_params == n_params_alloc)) { in gst_element_factory_property_valist_to_array()
419 n_params_alloc *= 2u; in gst_element_factory_property_valist_to_array()
421 g_realloc (names_array, sizeof (const gchar *) * n_params_alloc); in gst_element_factory_property_valist_to_array()
422 values_array = g_realloc (values_array, sizeof (GValue) * n_params_alloc); in gst_element_factory_property_valist_to_array()
424 sizeof (GValue) * (n_params_alloc - n_params)); in gst_element_factory_property_valist_to_array()