Hi everyone,
I am writing an application run on IMX8MPLUS EVK that crop and convert format frame input from v4l2 dev video device, that mean some resolution on list format support of dev video that not align to 16 such as 1920x1080.
But to use the hardware accelerate g2d to do this task, i reference to the source code testing imx g2d hardware on g2d-samples/basic_test/g2d_basic.c that int input test witdth and height need to algin to 16 before using g2d api to process the buffer.

So my question is it must be align a image buffer to 16 before process with g2d or not.
and if yes is input buffer not align make the hardware imx_g2d process slower? and if not do have a best way exept using cpu to clone new frame with alignment from old frame buffer?