0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-19 20:32:15 +02:00

win-dshow: Fix YUY2 line size error

This commit is contained in:
vico-shang 2024-02-06 09:28:07 +08:00 committed by Lain
parent 60bd03e45e
commit 7af6a0fc51

View File

@ -159,7 +159,7 @@ static void nv12_convert_to_yuy2(nv12_scale_t *s, uint8_t *dst_start,
const uint8_t *src_start)
{
const int size = s->src_cx * s->src_cy;
const int size_dst_line = s->src_cx * 4;
const int size_dst_line = s->src_cx * 2;
register const uint8_t *src_y = src_start;
register const uint8_t *src_uv = src_y + size;