mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-07 15:02:40 +00:00
glsyncmeta: transform func: return FALSE if not supported or failed
https://bugzilla.gnome.org/show_bug.cgi?id=751778
This commit is contained in:
parent
dfe37ffc59
commit
ba18bc5398
1 changed files with 4 additions and 0 deletions
|
@ -132,7 +132,11 @@ _gst_gl_sync_meta_transform (GstBuffer * dest, GstMeta * meta,
|
||||||
* metas after data */
|
* metas after data */
|
||||||
gst_gl_sync_meta_set_sync_point (dmeta, smeta->context);
|
gst_gl_sync_meta_set_sync_point (dmeta, smeta->context);
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
/* return FALSE, if transform type is not supported */
|
||||||
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue