]> git.sesse.net Git - ffmpeg/commit
avformat/mpegtsenc: fix PCR generation intervals
authorMarton Balint <cus@passwd.hu>
Sun, 4 Aug 2019 19:52:35 +0000 (21:52 +0200)
committerMarton Balint <cus@passwd.hu>
Wed, 14 Aug 2019 21:24:11 +0000 (23:24 +0200)
commit88ac76be796025dfa7cc55124e881fbc59b7377a
tree458c6804acaf66af2324d2348387dd0e29c3d342
parenta4d984ad33190500ce146e2d91610e0b2741bbbf
avformat/mpegtsenc: fix PCR generation intervals

PCR generation was based on counting packets for both CBR and VBR streams.
Couting packets might have worked for CBR streams (when muxrate was specified)
but it only took into account the packets of a service (or the packets of the
PCR stream lately), so even that was problematic for multi program streams.

The new code works on actual timestamps for both CBR and VBR streams. For VBR
streams the behaviour of the old code is simulated by selecting a PCR interval
which is the highest multiple of the frame duration but still less than 100 ms.

It should be trivial to add support for setting the PCR interval for VBR
streams as well in a later patch.

The accuracy of PCR packets for CBR streams was greatly improved by preemtively
sending them at PCR intervals even if sending the payload of another stream
is in progress.

This may fix these tickets:
- #5750
- #7524

Signed-off-by: Marton Balint <cus@passwd.hu>
libavformat/mpegtsenc.c