mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 03:31:05 +00:00
typefindhelper: avoid printing error log
some plugins such as wavparse may need find if type of media contained in the given data and will print error log if there is no matching factory. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4814>
This commit is contained in:
parent
a88d90b777
commit
308a9f9466
1 changed files with 1 additions and 1 deletions
|
@ -741,7 +741,7 @@ gst_type_find_helper_for_data_with_caps (GstObject * obj,
|
||||||
|
|
||||||
factories = gst_type_find_list_factories_for_caps (obj, caps);
|
factories = gst_type_find_list_factories_for_caps (obj, caps);
|
||||||
if (!factories) {
|
if (!factories) {
|
||||||
GST_ERROR_OBJECT (obj, "Failed to typefind for caps: %" GST_PTR_FORMAT,
|
GST_INFO_OBJECT (obj, "Failed to typefind for caps: %" GST_PTR_FORMAT,
|
||||||
caps);
|
caps);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue