Skip to content

Commit 0786190

Browse files
committed
Fix arm yuv2rgb
1 parent 9822073 commit 0786190

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/codecs/yuv2rgb.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ void convertYUV2RGB_NEON(const YCbCrBuffer &ycbcr, std::span<std::byte> rgb, uns
240240

241241
uint8x16x3_t result{result_r, result_g, result_b};
242242

243-
vst3q_u8(rgb + (y * width + x) * 3 + i * width * 3, result);
243+
vst3q_u8(rgb.data() + (y * width + x) * 3 + i * width * 3, result);
244244
}
245245
}
246246
}

0 commit comments

Comments
 (0)