glsyncmeta: transform func: return FALSE if not supported or failed

https://bugzilla.gnome.org/show_bug.cgi?id=751778
This commit is contained in:
Hyunjun Ko 2015-07-07 10:57:26 +09:00 committed by Sebastian Dröge
parent dfe37ffc59
commit ba18bc5398

View file

@ -132,7 +132,11 @@ _gst_gl_sync_meta_transform (GstBuffer * dest, GstMeta * meta,
* metas after data */
gst_gl_sync_meta_set_sync_point (dmeta, smeta->context);
}
} else {
/* return FALSE, if transform type is not supported */
return FALSE;
}
return TRUE;
}