Commit 16f3102f authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/img2dec: timestamps are 64bit

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent fbc472da
......@@ -226,9 +226,9 @@ static int img_read_header(AVFormatContext *s1)
}
if (s->ts_from_file)
avpriv_set_pts_info(st, 60, 1, 1);
avpriv_set_pts_info(st, 64, 1, 1);
else
avpriv_set_pts_info(st, 60, s->framerate.den, s->framerate.num);
avpriv_set_pts_info(st, 64, s->framerate.den, s->framerate.num);
if (s->width && s->height) {
st->codec->width = s->width;
......
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