mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +00:00
video-format: fix GBR unpack
This commit is contained in:
parent
ef42a163e4
commit
4ab23677a9
1 changed files with 3 additions and 3 deletions
|
@ -776,9 +776,9 @@ unpack_GBR (const GstVideoFormatInfo * info, GstVideoPackFlags flags,
|
|||
const guint8 *restrict sg = GET_G_LINE (y);
|
||||
const guint8 *restrict sb = GET_B_LINE (y);
|
||||
|
||||
sr += x * 4;
|
||||
sg += x * 4;
|
||||
sb += x * 4;
|
||||
sr += x;
|
||||
sg += x;
|
||||
sb += x;
|
||||
|
||||
video_orc_unpack_Y444 (dest, sr, sg, sb, width);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue