Lines Matching refs:profiles
124 GList *profiles; member
150 g_list_foreach (target->profiles, (GFunc) g_object_unref, NULL); in gst_encoding_target_finalize()
151 g_list_free (target->profiles); in gst_encoding_target_finalize()
222 return target->profiles; in gst_encoding_target_get_profiles()
240 for (tmp = target->profiles; tmp; tmp = tmp->next) { in gst_encoding_target_get_profile()
318 const gchar * description, const GList * profiles) in gst_encoding_target_new() argument
337 while (profiles) { in gst_encoding_target_new()
338 GstEncodingProfile *prof = (GstEncodingProfile *) profiles->data; in gst_encoding_target_new()
340 res->profiles = in gst_encoding_target_new()
341 g_list_append (res->profiles, gst_encoding_profile_ref (prof)); in gst_encoding_target_new()
342 profiles = profiles->next; in gst_encoding_target_new()
385 for (tmp = target->profiles; tmp; tmp = tmp->next) { in gst_encoding_target_add_profile()
395 target->profiles = g_list_append (target->profiles, profile); in gst_encoding_target_add_profile()
566 for (tmp = target->profiles; tmp; tmp = tmp->next) { in serialize_target()