Dear All,
I'm working with SDK 5.03.01.15 on DM8148EVM. I'm trying to capture/encode a 1080P stream from VIN with capture_encode example without wasting input frames (I would like to capture the input and only save it to file)
I've found into this forum that frame drop is quite normal in H264 encoding, due the fact that the codec have to drop frame to grant bitrate constrain. In fact by lowering bitrate (from 20Mbps to 2MBps for example) I have more frame dropped.
By searching into the forum I've found that I should change eRateControlPreset parameter from:
tEncoderPreset.eRateControlPreset = OMX_Video_RC_Low_Delay;
to
tEncoderPreset.eRateControlPreset = OMX_Video_RC_Storage;
But, however, I've notice no big changes.
Changing to VBR to CBR should also reduce the problem. I've changed from
tVidEncBitRate.eControlRate = OMX_Video_ControlRateDisable;
to
tvidEncBitRate.eControlRate = OMX_Video_ControlRateVariable;
But, again, I've notice no changes on the resulting file (in term of "missing frames")
Can anybody help me in configure h264 encoder correctly?
Best Regards,
Andrea