Hi,
I am encoding in H.264 interlaced frames i.e. frames composed of two fields in the even and odd lines.
If I encode my picture (PAL D1) as a progressive frame the decoder image has the right colors but obviously I see the comb on moving edges.In this case the inputContent is set as progressive and the image width in 720:
EncParams->inputContentType = IVIDEO_PROGRESSIVE
According to the SPRABA9 I set
EncParams->inputContentType = IVIDEO_INTERLACED;
dynEncParams->captureWidth = 2 * EncParams->maxWidth;
since "For interlaced content, captureWidth should be equal to the pitch/stride value needed to move to the next row of pixels in the same field."
In this case however the chroma appears completely out of phase I see a big green area on the left and magenta on the right with ghosts of the main image. The image format is not considered in the right way. I think I am missing some encoder setting even if looking at the documentation I don't find other useful suggestions.
thank you