diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-06-24 07:39:35 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-06-26 16:04:22 +0200 |
commit | 3f4edf012593c73941caa0ef9b292da00225c3df (patch) | |
tree | 698dcab7886aecf586555fdb200a0b6468d2647d | |
parent | 1b04eb20f7e3f0a71f73ba91efcc3d60a435e443 (diff) | |
download | ffmpeg-3f4edf012593c73941caa0ef9b292da00225c3df.tar.gz |
dump_stream: print the timebase as is, do not reduce it
It makes more sense to print the timebase exactly as it is set. Also,
this avoids a divide by zero when av_dump_format() is called on a format
context before writing the header.
-rw-r--r-- | libavformat/dump.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/dump.c b/libavformat/dump.c index 1e385ab307..aae23afb3a 100644 --- a/libavformat/dump.c +++ b/libavformat/dump.c @@ -279,7 +279,6 @@ static void dump_stream_format(AVFormatContext *ic, int i, char buf[256]; int flags = (is_output ? ic->oformat->flags : ic->iformat->flags); AVStream *st = ic->streams[i]; - int g = av_gcd(st->time_base.num, st->time_base.den); AVDictionaryEntry *lang = av_dict_get(st->metadata, "language", NULL, 0); avcodec_string(buf, sizeof(buf), st->codec, is_output); @@ -292,7 +291,7 @@ static void dump_stream_format(AVFormatContext *ic, int i, if (lang) av_log(NULL, AV_LOG_INFO, "(%s)", lang->value); av_log(NULL, AV_LOG_DEBUG, ", %d, %d/%d", st->codec_info_nb_frames, - st->time_base.num / g, st->time_base.den / g); + st->time_base.num, st->time_base.den); av_log(NULL, AV_LOG_INFO, ": %s", buf); if (st->sample_aspect_ratio.num && // default |