forked from FFmpeg/FFmpeg
lavf/concatdec: properly init streams timestamp parameters.
pts_wrap_bits defaults to 33 (like MPEG), that causes valid timestamps to be unwrapped and become invalid. Inspired by a patch by Wu Zhiqiang <mymoeyard@gmail.com>.
This commit is contained in:
parent
97b89432e4
commit
e45f7bca73
1 changed files with 1 additions and 1 deletions
|
@ -185,8 +185,8 @@ static int copy_stream_props(AVStream *st, AVStream *source_st)
|
|||
return ret;
|
||||
st->r_frame_rate = source_st->r_frame_rate;
|
||||
st->avg_frame_rate = source_st->avg_frame_rate;
|
||||
st->time_base = source_st->time_base;
|
||||
st->sample_aspect_ratio = source_st->sample_aspect_ratio;
|
||||
avpriv_set_pts_info(st, 64, source_st->time_base.num, source_st->time_base.den);
|
||||
|
||||
av_dict_copy(&st->metadata, source_st->metadata, 0);
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue