Module: wine Branch: master Commit: d085e5ba72883928bc193ee41955064d6069261d URL: https://source.winehq.org/git/wine.git/?a=commit;h=d085e5ba72883928bc193ee41...
Author: Zebediah Figura z.figura12@gmail.com Date: Thu Jun 18 21:50:41 2020 -0500
winegstreamer: Clear the "colorimetry" and "chroma-site" fields in amt_to_gst_caps_video().
These fields don't prevent us from connecting, but they may force videoconvert to do an expensive conversion where not necessary.
Signed-off-by: Zebediah Figura z.figura12@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/winegstreamer/gstdemux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/winegstreamer/gstdemux.c b/dlls/winegstreamer/gstdemux.c index b9c91245f8..75ddb3082e 100644 --- a/dlls/winegstreamer/gstdemux.c +++ b/dlls/winegstreamer/gstdemux.c @@ -416,8 +416,8 @@ static GstCaps *amt_to_gst_caps_video(const AM_MEDIA_TYPE *mt) /* Clear some fields that shouldn't prevent us from connecting. */ for (i = 0; i < gst_caps_get_size(caps); ++i) { - gst_structure_remove_field(gst_caps_get_structure(caps, i), "framerate"); - gst_structure_remove_field(gst_caps_get_structure(caps, i), "pixel-aspect-ratio"); + gst_structure_remove_fields(gst_caps_get_structure(caps, i), + "framerate", "pixel-aspect-ratio", "colorimetry", "chroma-site", NULL); } } return caps;