mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
encoding-profile: fix unused-but-set-variable warnings with gcc 4.6
Top-level profiles don't have restrictions, only stream profiles, so no need to serialise that here. https://bugzilla.gnome.org/show_bug.cgi?id=646925
This commit is contained in:
parent
53ed133354
commit
3fa0119dc1
1 changed files with 3 additions and 6 deletions
|
@ -448,21 +448,19 @@ serialize_encoding_profile (GKeyFile * out, GstEncodingProfile * prof)
|
|||
const GList *tmp;
|
||||
guint i;
|
||||
const gchar *profname, *profdesc, *profpreset, *proftype;
|
||||
const GstCaps *profformat, *profrestriction;
|
||||
const GstCaps *profformat;
|
||||
|
||||
profname = gst_encoding_profile_get_name (prof);
|
||||
profdesc = gst_encoding_profile_get_description (prof);
|
||||
profformat = gst_encoding_profile_get_format (prof);
|
||||
profpreset = gst_encoding_profile_get_preset (prof);
|
||||
proftype = gst_encoding_profile_get_type_nick (prof);
|
||||
profrestriction = gst_encoding_profile_get_restriction (prof);
|
||||
|
||||
profgroupname = g_strdup_printf ("profile-%s", profname);
|
||||
|
||||
g_key_file_set_string (out, profgroupname, "name", profname);
|
||||
|
||||
g_key_file_set_value (out, profgroupname, "type",
|
||||
gst_encoding_profile_get_type_nick (prof));
|
||||
g_key_file_set_value (out, profgroupname, "type", proftype);
|
||||
|
||||
if (profdesc) {
|
||||
gchar *locale;
|
||||
|
@ -1001,7 +999,6 @@ gst_encoding_target_save (GstEncodingTarget * target, GError ** error)
|
|||
{
|
||||
gchar *filename;
|
||||
gchar *lfilename;
|
||||
gboolean res;
|
||||
|
||||
g_return_val_if_fail (GST_IS_ENCODING_TARGET (target), FALSE);
|
||||
g_return_val_if_fail (target->category != NULL, FALSE);
|
||||
|
@ -1012,7 +1009,7 @@ gst_encoding_target_save (GstEncodingTarget * target, GError ** error)
|
|||
GST_ENCODING_TARGET_DIRECTORY, target->category, lfilename, NULL);
|
||||
g_free (lfilename);
|
||||
|
||||
res = gst_encoding_target_save_to_file (target, filename, error);
|
||||
gst_encoding_target_save_to_file (target, filename, error);
|
||||
g_free (filename);
|
||||
|
||||
return TRUE;
|
||||
|
|
Loading…
Reference in a new issue