diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-06-15 23:26:48 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-06-15 23:26:48 +0000 |
commit | 47dd81c75fb6e7c724bf7bcc147fd931e3b81ee2 (patch) | |
tree | 74b66906b856f3adf7fa9397955af70fc3d12649 /libavformat | |
parent | 05edc1a75ac99ff34da5a089e1e8caae9b7c6958 (diff) | |
download | ffmpeg-47dd81c75fb6e7c724bf7bcc147fd931e3b81ee2.tar.gz |
make dump_format output more homogenous
Originally committed as revision 5483 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/utils.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 8ddc831fab..d135015d3a 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2644,6 +2644,7 @@ void dump_format(AVFormatContext *ic, av_log(NULL, AV_LOG_INFO, "(%s)", st->language); } av_log(NULL, AV_LOG_DEBUG, ", %d/%d", st->time_base.num/g, st->time_base.den/g); + av_log(NULL, AV_LOG_INFO, ": %s", buf); if(st->codec->codec_type == CODEC_TYPE_VIDEO){ if(st->r_frame_rate.den && st->r_frame_rate.num) av_log(NULL, AV_LOG_INFO, ", %5.2f fps(r)", av_q2d(st->r_frame_rate)); @@ -2652,7 +2653,7 @@ void dump_format(AVFormatContext *ic, else av_log(NULL, AV_LOG_INFO, ", %5.2f fps(c)", 1/av_q2d(st->codec->time_base)); } - av_log(NULL, AV_LOG_INFO, ": %s\n", buf); + av_log(NULL, AV_LOG_INFO, "\n"); } } |