Merge pull request #24801 from theartful:better_error_msg

Better error message for missing gstreamer plugin
pull/24819/head
Alexander Smorkalov 11 months ago committed by GitHub
commit 1564be2d4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      modules/videoio/src/cap_gstreamer.cpp

@ -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
{

Loading…
Cancel
Save