mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
dvdspu: fix pgs palette colors
U and V were inverted https://bugzilla.gnome.org/show_bug.cgi?id=755239
This commit is contained in:
parent
1899e2a099
commit
7a7f358e6d
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue