camera: Add padding to bytesused calculation (MR 13)
This commit is contained in:

committed by
Martijn Braam

parent
ba57d91da4
commit
5f65d910f5
@@ -554,8 +554,9 @@ mp_camera_capture_buffer(MPCamera *camera, MPBuffer *buffer)
|
||||
bytesused = buf.bytesused;
|
||||
}
|
||||
|
||||
assert(bytesused ==
|
||||
mp_pixel_format_width_to_bytes(pixel_format, width) * height);
|
||||
assert(bytesused == (mp_pixel_format_width_to_bytes(pixel_format, width) +
|
||||
mp_pixel_format_width_to_padding(pixel_format, width)) *
|
||||
height);
|
||||
assert(bytesused == camera->buffers[buf.index].length);
|
||||
|
||||
buffer->index = buf.index;
|
||||
|
Reference in New Issue
Block a user