mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
workaround some broken mpeg-ps timestamps
Originally committed as revision 3755 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
3c9ec07ef2
commit
90bb394dcc
@ -741,6 +741,14 @@ static void compute_pkt_fields(AVFormatContext *s, AVStream *st,
|
||||
/* cannot compute PTS if not present (we can compute it only
|
||||
by knowing the futur */
|
||||
} else {
|
||||
if(pkt->pts != AV_NOPTS_VALUE && pkt->duration){
|
||||
int64_t old_diff= ABS(st->cur_dts - pkt->duration - pkt->pts);
|
||||
int64_t new_diff= ABS(st->cur_dts - pkt->pts);
|
||||
if(old_diff < new_diff && old_diff < (pkt->duration>>3)){
|
||||
pkt->pts += pkt->duration;
|
||||
}
|
||||
}
|
||||
|
||||
/* presentation is not delayed : PTS and DTS are the same */
|
||||
if (pkt->pts == AV_NOPTS_VALUE) {
|
||||
if (pkt->dts == AV_NOPTS_VALUE) {
|
||||
|
Loading…
Reference in New Issue
Block a user