Permalink
4 comments
on commit
sign in to comment.
Browse files
ZVISION: Add a hack to set the correct frame delay for RLF videos
Also, use Common::Rational to avoid using floating point math
- Loading branch information
Showing
with
14 additions
and 2 deletions.
This comment has been minimized.
This is too much dirty
This comment has been minimized.
Why don't you make _frmDelay a Common::Rational instead so you don't truncate the data?
This comment has been minimized.
hmmm, I see problem related to FixedRateVideoTrack class that can't get correct framerate from getDuration() timestamp because it's return only timestamp without real framerate information, because it's constructs timestamp(0, 264, 125) for 32 frame-length rlf-file with 66msec per frame (15 fps)
This is bacause:
This comment has been minimized.
@Marisa-Chan Nice catch! I'll write up a fix.
EDIT: The fix is in bed5325