My first use case is as below:
case1. capture -> swMs -> display
We notice that video is not smooth if swMs fps is not matched to capture fps.
capture (60 fps) -> swMs (30 fps) -> display (60 fps)
After setting swMs to 60 fps, the video looks good.
Another use case is:
case2. capture -> swMs -> nsf -> encode
If capture fps is 50 (1080@50p), the frame dropped issue of video is very noticeable.
capture (50 fps) -> swMs (30 fps) -> nsf -> encode (30 fps)
If capture source is 60 fps, it looks better, but still has unsmooth video issue as case1.
Is there any issue about skipping frame mechanism on swMs?
p.s. We are using dvr_rdk 4.0.
Thanks.