mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
aacparse: Handle gst_pad_get_current_caps() returning NULL gracefully
This can happen when the pipeline is currently shutting down. https://bugzilla.gnome.org/show_bug.cgi?id=759539
This commit is contained in:
parent
a5691af319
commit
6cdbf40622
1 changed files with 4 additions and 0 deletions
|
@ -1016,6 +1016,10 @@ gst_aac_parse_get_audio_profile_object_type (GstAacParse * aacparse)
|
|||
guint8 ret;
|
||||
|
||||
srccaps = gst_pad_get_current_caps (GST_BASE_PARSE_SRC_PAD (aacparse));
|
||||
if (G_UNLIKELY (srccaps == NULL)) {
|
||||
return G_MAXUINT8;
|
||||
}
|
||||
|
||||
srcstruct = gst_caps_get_structure (srccaps, 0);
|
||||
profile = gst_structure_get_string (srcstruct, "profile");
|
||||
if (G_UNLIKELY (profile == NULL)) {
|
||||
|
|
Loading…
Reference in a new issue