mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
vadeinterlace: Accept ANY feature.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1024>
This commit is contained in:
parent
bf1b03e5cb
commit
5c6b641ae3
1 changed files with 9 additions and 2 deletions
|
@ -717,10 +717,17 @@ gst_va_deinterlace_class_init (gpointer g_class, gpointer class_data)
|
|||
display = gst_va_display_drm_new_from_path (btrans_class->render_device_path);
|
||||
filter = gst_va_filter_new (display);
|
||||
|
||||
if (gst_va_filter_open (filter))
|
||||
if (gst_va_filter_open (filter)) {
|
||||
src_caps = gst_va_filter_get_caps (filter);
|
||||
else
|
||||
/* adds any to enable passthrough */
|
||||
{
|
||||
GstCaps *any_caps = gst_caps_new_empty_simple ("video/x-raw");
|
||||
gst_caps_set_features_simple (any_caps, gst_caps_features_new_any ());
|
||||
src_caps = gst_caps_merge (src_caps, any_caps);
|
||||
}
|
||||
} else {
|
||||
src_caps = gst_caps_from_string (caps_str);
|
||||
}
|
||||
|
||||
sink_caps = gst_va_deinterlace_remove_interlace (src_caps);
|
||||
|
||||
|
|
Loading…
Reference in a new issue