size.total = size.width * size.height;
y = yuv[position.y * size.width + position.x];
u = yuv[(position.y / 2) * (size.width / 2) + (position.x / 2) + size.total];
v = yuv[(position.y / 2) * (size.width / 2) + (position.x / 2) + size.total + (size.total / 4)];
rgb = YUV444toRGB888(y, u, v);
Here
/
is Div not division.
The above formula is taken from the wikipedia link .
The one thing I want to know is that the statement mentioned
Here
/
is Div not division.
What is Div here then, it is not dividing then what?