• Sasi Inguva's avatar
    lavf/mov.c: offset index timestamps by the minimum pts to make first pts zero · 93db5e3f
    Sasi Inguva authored
    If the videos starts with B frame, then the minimum composition time
    as computed by stts + ctts will be non-zero. Hence we need to shift
    the DTS, so that the first pts is zero. This was the intention of that
    code-block. However it was subtracting by the wrong amount.
    
    For example, for one of the videos in the bug nonFormatted.mp4 we have
    
    stts:
    sample_count  duration
    960           1001
    
    ctts:
    sample_count  duration
    1             3003
    2             0
    1             3003
    ....
    
    The resulting composition times are :  3003, 1001, 2002, 6006, ...
    
    The minimum composition time or PTS is 1001, which should be used to
    offset DTS. However the code block was wrongly using ctts[0] which is
    3003. Hence the PTS was negative. This change computes the minimum pts
    encountered while fixing the index, and then subtracts it from all the
    timestamps after the edit list fixes are applied.
    
    Samples files available from:
    
    https://bugs.chromium.org/p/chromium/issues/detail?id=721451
    https://bugs.chromium.org/p/chromium/issues/detail?id=723537
    
    fate-suite/h264/twofields_packet.mp4 is a similar file starting with 2
    B frames. Before this change the PTS of first two B-frames was -6006
    and -3003, and I am guessing one of them got dropped when being decoded
    and remuxed  to the framecrc before, and now it is not being dropped.
    Signed-off-by: 's avatarSasi Inguva <isasi@google.com>
    93db5e3f
Name
Last commit
Last update
..
api Loading commit data...
checkasm Loading commit data...
fate Loading commit data...
filtergraphs Loading commit data...
ref Loading commit data...
.gitignore Loading commit data...
Makefile Loading commit data...
audiogen.c Loading commit data...
audiomatch.c Loading commit data...
base64.c Loading commit data...
copycooker.sh Loading commit data...
extended.ffconcat Loading commit data...
fate-run.sh Loading commit data...
fate-valgrind.supp Loading commit data...
fate.sh Loading commit data...
ffserver-regression.sh Loading commit data...
ffserver.conf Loading commit data...
ffserver.regression.ref Loading commit data...
lavf-regression.sh Loading commit data...
md5.sh Loading commit data...
reference.pnm Loading commit data...
regression-funcs.sh Loading commit data...
rotozoom.c Loading commit data...
simple1.ffconcat Loading commit data...
simple2.ffconcat Loading commit data...
test.ffmeta Loading commit data...
tiny_psnr.c Loading commit data...
tiny_ssim.c Loading commit data...
utils.c Loading commit data...
videogen.c Loading commit data...