mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
lavf/utils: Try to unwrap pts/dts so as to minimize wraps
Based on code by: Andrey Utkin <andrey.krieger.utkin@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
254917f078
commit
12b1512e85
@ -1021,7 +1021,10 @@ static void compute_pkt_fields(AVFormatContext *s, AVStream *st,
|
||||
presentation_delayed = 1;
|
||||
|
||||
if(pkt->pts != AV_NOPTS_VALUE && pkt->dts != AV_NOPTS_VALUE && pkt->dts - (1LL<<(st->pts_wrap_bits-1)) > pkt->pts && st->pts_wrap_bits<63){
|
||||
pkt->dts -= 1LL<<st->pts_wrap_bits;
|
||||
if(is_relative(st->cur_dts) || pkt->dts - (1LL<<(st->pts_wrap_bits-1)) > st->cur_dts) {
|
||||
pkt->dts -= 1LL<<st->pts_wrap_bits;
|
||||
} else
|
||||
pkt->pts += 1LL<<st->pts_wrap_bits;
|
||||
}
|
||||
|
||||
// some mpeg2 in mpeg-ps lack dts (issue171 / input_file.mpg)
|
||||
|
Loading…
Reference in New Issue
Block a user