Hi TI, my question is a continuation of an unresolved topic https://e2e.ti.com/support/processors/f/791/t/835475
I will repeat a little for clarity. I am developing a custom am5728 board on SDK05.02.00.10 which can be used to capture interlace video.
Just now i can capture the video successfully, but the video have some jitter.
My am5728 capture is 50 fields per second (used tw2964 decoder), the field is width 704, height 280 (non-standard resolution after video croped 720/288)
I can get 50 interrupts from the vin3a per second.
I doubt whether am5728 take each field as a frame to display which result in jitter.
I has an idea is to display only V4L2_FIELD_TOP frames, this will reduce the frame rate to 25Hz and remove jitter.
Can I throw out all V4L2_FIELD_BOTTOM frames with the help of the vip driver modernization ( static irqreturn_t vip_irq(int irq_vip, void *data) )?
Please help me do it right.