mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 01:15:39 +00:00
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:
parent
d91638b2be
commit
ed49373e87
1 changed files with 3 additions and 2 deletions
|
@ -821,11 +821,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"));
|
||||
|
||||
|
|
Loading…
Reference in a new issue