mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-29 18:48:44 +00:00
ffmpegcolorspace: Use correct Y offset for YVYU -> RGB conversions
Fixes bug #623530.
This commit is contained in:
parent
d774b46077
commit
6e9deae749
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ static void glue (yvyu422_to_, RGB_NAME)(AVPicture *dst, const AVPicture *src,
|
|||
RGB_OUT(d1, r, g, b);
|
||||
d1 += BPP;
|
||||
|
||||
YUV_TO_RGB2_CCIR(r, g, b, s1[1]);
|
||||
YUV_TO_RGB2_CCIR(r, g, b, s1[2]);
|
||||
RGB_OUT(d1, r, g, b);
|
||||
d1 += BPP;
|
||||
|
||||
|
|
Loading…
Reference in a new issue