mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 15:18:21 +00:00
gdpdepay: don't allocation query if caps aren't fixed
When querying downstream for allocation, and the source caps hasn't set its caps, using ANY by default, it raises a critical message in console: CRITICAL **: gst_video_info_from_caps: assertion 'gst_caps_is_fixed (caps)' failed This patch bails out decide_allocation() if the caps aren't fixed. https://bugzilla.gnome.org/show_bug.cgi?id=789476
This commit is contained in:
parent
538ccb6093
commit
f04b20e59e
1 changed files with 5 additions and 0 deletions
|
@ -560,6 +560,11 @@ gst_gdp_depay_decide_allocation (GstGDPDepay * gdpdepay)
|
|||
return;
|
||||
}
|
||||
|
||||
if (!gst_caps_is_fixed (caps)) {
|
||||
GST_LOG_OBJECT (gdpdepay, "Caps on src pad are not fixed. Not querying.");
|
||||
return;
|
||||
}
|
||||
|
||||
query = gst_query_new_allocation (caps, TRUE);
|
||||
if (!gst_pad_peer_query (gdpdepay->srcpad, query)) {
|
||||
GST_WARNING_OBJECT (gdpdepay, "Peer allocation query failed.");
|
||||
|
|
Loading…
Reference in a new issue