This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

H264enc with interlaced content

Hello,

I'm working on DM8168 platform ,my EZSDK version is 5_03_01_15.

as the datasheet(H264_encoder_HDICP2_userguide..pdf) described, the h264 encoder supports progressive and field based interlaced coding.

I ran the decode OMX example with interlaced mpeg2 content inputting, then ran the encode example with the yuv file produced by "decode" .

so  i produced a h264 file,but it can't played correctly by VLC. The Vlc show the 2 seperated filed in a picture.

I added the params int encode example like: 

  OMX_VIDEO_PARAM_FRAMEDATACONTENTTYPE framData;
  framData.nPortIndex = OMX_VIDENC_INPUT_PORT;
framData.eContentType = OMX_Video_Interlaced;
framData.eInterlaceCodingType = OMX_Video_Interlace_Fieldonly_MRF;
and the send these to Encode component.

But it still doesn't work

Does the encoder support the encoding with interlaced content inputting?