Browse Source

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>.
tags/n4.0
Nicolas George 7 years ago
parent
commit
e45f7bca73
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/concatdec.c

+ 1
- 1
libavformat/concatdec.c View File

@@ -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…
Cancel
Save