[Bug 777177] osximagesink: change rank to PRIMARY so it gets picked up by autovideosink
GStreamer (GNOME Bugzilla)
bugzilla at gnome.org
Sat Jul 15 10:08:47 UTC 2017
https://bugzilla.gnome.org/show_bug.cgi?id=777177
--- Comment #4 from Philippe Renon <philippe_renon at yahoo.fr> ---
With 1.12.1 we are seeing the same behavior as described here :
http://gstreamer-devel.966125.n4.nabble.com/autovideosink-SIGSEGV-on-OS-X-Sierra-td4683057.html
For now, we are forcing the rank of osxvideosink to PRIMARY so it gets selected
by autovideosink. We do that with :
GstRegistry *reg = gst_registry_get();
GstPluginFeature *feature = gst_registry_lookup_feature(reg,
"osxvideosink");
if (feature) {
// raise rank of osxvideosink so it gets selected by autovideosink
gst_plugin_feature_set_rank(feature, GST_RANK_PRIMARY);
gst_object_unref(feature);
}
--
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.
More information about the gstreamer-bugs
mailing list