]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/dump.c
lavf/utils: Do not force chapter end time before chapter start.
[ffmpeg] / libavformat / dump.c
index 8fd58a0dbac9bf3ecf4d739a41b691313665a1c8..77043e3fdbff48c5ed5f58d9c10199d595426a48 100644 (file)
@@ -595,7 +595,7 @@ void av_dump_format(AVFormatContext *ic, int index,
         }
         av_log(NULL, AV_LOG_INFO, ", bitrate: ");
         if (ic->bit_rate)
-            av_log(NULL, AV_LOG_INFO, "%"PRId64" kb/s", (int64_t)ic->bit_rate / 1000);
+            av_log(NULL, AV_LOG_INFO, "%"PRId64" kb/s", ic->bit_rate / 1000);
         else
             av_log(NULL, AV_LOG_INFO, "N/A");
         av_log(NULL, AV_LOG_INFO, "\n");