pbutils: Avoid assertion describing raw audio caps without format

We used to get:

    gst_audio_format_from_string: assertion 'format != NULL' failed
This commit is contained in:
Thibault Saunier 2018-04-30 17:17:22 +02:00
parent 77b23ea0ac
commit 8600fc3148

View file

@ -823,11 +823,12 @@ format_info_get_desc (const FormatInfo * info, const GstCaps * caps)
gint depth = 0;
gboolean is_float;
const gchar *str;
GstAudioFormat format;
GstAudioFormat format = GST_AUDIO_FORMAT_UNKNOWN;
const GstAudioFormatInfo *finfo;
str = gst_structure_get_string (s, "format");
format = gst_audio_format_from_string (str);
if (str)
format = gst_audio_format_from_string (str);
if (format == GST_AUDIO_FORMAT_UNKNOWN)
return g_strdup (_("Uncompressed audio"));