Commit 251262a4 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

Revert "winegstreamer: Avoid performing color matrix conversions in videoconvert.".

This reverts commit fd25ba65. The relevant commit breaks visual correctness in many applications, for the sake of performance. As such I am rather inclined to revert it for 6.0, especially as a full solution will probably involve a revert of this patch along with upstream changes to GStreamer. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=49535Signed-off-by: 's avatarZebediah Figura <z.figura12@gmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 323d46fb
...@@ -1024,9 +1024,6 @@ static void init_new_decoded_pad(GstElement *bin, GstPad *pad, struct gstdemux * ...@@ -1024,9 +1024,6 @@ static void init_new_decoded_pad(GstElement *bin, GstPad *pad, struct gstdemux *
goto out; goto out;
} }
/* Avoid expensive color matrix conversions. */
gst_util_set_object_arg(G_OBJECT(vconv), "matrix-mode", "none");
/* GStreamer outputs RGB video top-down, but DirectShow expects bottom-up. */ /* GStreamer outputs RGB video top-down, but DirectShow expects bottom-up. */
if (!(flip = gst_element_factory_make("videoflip", NULL))) if (!(flip = gst_element_factory_make("videoflip", NULL)))
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment