Commit 51bd81f6 authored by Reimar Döffinger's avatar Reimar Döffinger

set pts_wrap_bits to 32 since timestamps in packets are 32 bit

Originally committed as revision 7880 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 190972a0
......@@ -378,6 +378,7 @@ static int gxf_header(AVFormatContext *s, AVFormatParameters *ap) {
url_fskip(pb, len);
for (i = 0; i < s->nb_streams; i++) {
AVStream *st = s->streams[i];
st->pts_wrap_bits = 32;
if (main_timebase.num && main_timebase.den)
st->time_base = main_timebase;
else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment