ges/tools: Use new GstEncodingProfile function from pbutils

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6712>
This commit is contained in:
Edward Hervey 2024-04-23 07:30:12 +02:00 committed by GStreamer Marge Bot
parent ad8c42ba06
commit 5d705ed923
3 changed files with 5 additions and 25 deletions

View file

@ -618,10 +618,10 @@ _set_rendering_details (GESLauncher * self)
smart_profile = TRUE;
else {
opts->format = get_file_extension (opts->outputuri);
prof = parse_encoding_profile (opts->format);
prof = gst_encoding_profile_from_string (opts->format);
}
} else {
prof = parse_encoding_profile (opts->format);
prof = gst_encoding_profile_from_string (opts->format);
if (!prof) {
ges_printerr ("Invalid format specified: %s", opts->format);
goto done;
@ -636,7 +636,7 @@ _set_rendering_details (GESLauncher * self)
opts->format =
g_strdup ("application/ogg:video/x-theora:audio/x-vorbis");
prof = parse_encoding_profile (opts->format);
prof = gst_encoding_profile_from_string (opts->format);
}
if (!prof) {
@ -649,7 +649,8 @@ _set_rendering_details (GESLauncher * self)
GstEncodingProfile *new_prof;
GList *tmp;
if (!(new_prof = parse_encoding_profile (opts->container_profile))) {
if (!(new_prof =
gst_encoding_profile_from_string (opts->container_profile))) {
ges_printerr ("Failed to parse container profile %s",
opts->container_profile);
gst_object_unref (prof);

View file

@ -183,26 +183,6 @@ ensure_uri (const gchar * location)
return gst_filename_to_uri (location, NULL);
}
GstEncodingProfile *
parse_encoding_profile (const gchar * format)
{
GstEncodingProfile *profile;
GValue value = G_VALUE_INIT;
g_value_init (&value, GST_TYPE_ENCODING_PROFILE);
if (!gst_value_deserialize (&value, format)) {
g_value_reset (&value);
return NULL;
}
profile = g_value_dup_object (&value);
g_value_reset (&value);
return profile;
}
void
print_enum (GType enum_type)
{

View file

@ -58,7 +58,6 @@ typedef struct
gchar * sanitize_timeline_description (gchar **args, GESLauncherParsedOptions *opts);
gboolean get_flags_from_string (GType type, const gchar * str_flags, guint *val);
gchar * ensure_uri (const gchar * location);
GstEncodingProfile * parse_encoding_profile (const gchar * format);
void print_enum (GType enum_type);
void ges_print (GstDebugColorFlags c, gboolean err, gboolean nline, const gchar * format, va_list var_args);