[464/906] glimagesink: Interface query should return FALSE if the supplied interface is not GST_TYPE_X_OVERLAY

This commit is contained in:
Sreerenj Balachandran 2011-05-25 11:21:19 +03:00 committed by Matthew Waters
parent 0cefeead18
commit b1166ed0c4

View file

@ -688,6 +688,8 @@ static gboolean
gst_glimage_sink_interface_supported (GstImplementsInterface * iface,
GType type)
{
if (type != GST_TYPE_X_OVERLAY)
return FALSE;
return TRUE;
}