dvdspu: fix pgs palette colors

U and V were inverted

https://bugzilla.gnome.org/show_bug.cgi?id=755239
This commit is contained in:
Arnaud Vrac 2015-09-18 19:07:47 +02:00 committed by Jan Schmidt
parent 1899e2a099
commit 7a7f358e6d

View file

@ -514,8 +514,8 @@ parse_set_palette (GstDVDSpu * dvdspu, guint8 type, guint8 * payload,
gint R, G, B;
n = payload[0];
Y = payload[1];
U = payload[2];
V = payload[3];
V = payload[2];
U = payload[3];
A = payload[4];
#if DUMP_FULL_PALETTE