Hi,
my video driver acquires interlaced PAL frames with resolution 576i, the color space is YUV422. The odd and even fields are interlaced in the acquired frame buffer.
I can use the resizer to get a 576i YUV420SP image.
Then I can use the H.264 encoder (two calls) to encode the two fields.
My questions are:
1) can the resizer be used both for scaling and color resampling from 720x576 YUV422 to 720x288 YUV420SP?
2) do I need to call the resizer twice, one time for each operation (720x576 YUV422 -> 720x576 YUV420 -> 720x288 YUV420SP, or maybe faster 720x576 YUV422 -> 720x288 YUV422 -> 720x288 YUV420SP) ?
3) what about encoding (H.264) only the first field of the 720x576 YUV420 image?
Thank you in advance for your support.