SharpYuvConvertWithOptions,cosmetics: fix formatting

Change-Id: Ieffe5877c6d715d168b0e9526d8fa1a946860771
This commit is contained in:
James Zern 2023-10-24 17:38:27 -07:00
parent 307071f144
commit 339231cc37

View File

@ -524,7 +524,7 @@ int SharpYuvConvertWithOptions(const void* r_ptr, const void* g_ptr,
if (yuv_bit_depth != 8 && yuv_bit_depth != 10 && yuv_bit_depth != 12) { if (yuv_bit_depth != 8 && yuv_bit_depth != 10 && yuv_bit_depth != 12) {
return 0; return 0;
} }
if (rgb_bit_depth > 8 && (rgb_step % 2 != 0 || rgb_stride %2 != 0)) { if (rgb_bit_depth > 8 && (rgb_step % 2 != 0 || rgb_stride % 2 != 0)) {
// Step/stride should be even for uint16_t buffers. // Step/stride should be even for uint16_t buffers.
return 0; return 0;
} }