Merge pull request #24801 from theartful:better_error_msg

Better error message for missing gstreamer plugin
This commit is contained in:
Alexander Smorkalov 2024-01-06 12:00:28 +03:00 committed by GitHub
commit 1564be2d4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2820,7 +2820,8 @@ void handleMessage(GstElement * pipeline)
if (gst_is_missing_plugin_message(msg))
{
CV_WARN("your GStreamer installation is missing a required plugin");
CV_WARN("your GStreamer installation is missing a required plugin: " <<
gst_missing_plugin_message_get_description(msg));
}
else
{