Commit d8b58205 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #13988 from raymanfx:gstreamer

parents d2f70f61 796b0fec
...@@ -1811,6 +1811,10 @@ void handleMessage(GstElement * pipeline) ...@@ -1811,6 +1811,10 @@ void handleMessage(GstElement * pipeline)
while(gst_bus_have_pending(bus)) { while(gst_bus_have_pending(bus)) {
msg = gst_bus_pop(bus); msg = gst_bus_pop(bus);
if (!msg || !GST_IS_MESSAGE(msg))
{
continue;
}
//printf("\t\tGot %s message\n", GST_MESSAGE_TYPE_NAME(msg)); //printf("\t\tGot %s message\n", GST_MESSAGE_TYPE_NAME(msg));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment