Commit 4b9d8260 authored by michael's avatar michael

Remove common factors from timebase in av_set_pts_info().

Should fix issue313


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14232 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 99d498b2
......@@ -3152,9 +3152,13 @@ void url_split(char *proto, int proto_size,
void av_set_pts_info(AVStream *s, int pts_wrap_bits,
int pts_num, int pts_den)
{
unsigned int gcd= ff_gcd(pts_num, pts_den);
s->pts_wrap_bits = pts_wrap_bits;
s->time_base.num = pts_num;
s->time_base.den = pts_den;
s->time_base.num = pts_num/gcd;
s->time_base.den = pts_den/gcd;
if(gcd>1)
av_log(NULL, AV_LOG_DEBUG, "st:%d removing common factor %d from timebase\n", s->index, gcd);
}
/* fraction handling */
......
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