I have a question about the format.
I think that:
The format of the images collected by capture.c from the driver is 422 standard format(means :pixel is :[Y0 U0 V0] [Y1 U1 V1] [Y2 U2 V2] [Y3 U3 V3] ,the code stream is :Y0 U0 Y1 V1 Y2 U2 Y3 V3).
But when we store the images, the format is the 422PSemi defined by TI(means we first store the Y, then store the U and V).
If what I think is right, so where does this transformation occur?? in the driver??or others??
In addition, when we use the images, why do we transfer 422 to 420 by Ccv thread. And are there any
docuements talking about it??