1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

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
+2 -1
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
{