Better error message for missing gstreamer plugin

This commit is contained in:
Ahmed Essam 2024-01-01 00:27:09 +02:00
parent a8ec658611
commit a25cfb463d

View File

@ -2820,7 +2820,8 @@ void handleMessage(GstElement * pipeline)
if (gst_is_missing_plugin_message(msg)) 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 else
{ {