[FFmpeg-cvslog] lavf/dump: Remove superfluous cast.
Carl Eugen Hoyos
git at videolan.org
Tue Aug 29 02:34:55 EEST 2017
ffmpeg | branch: master | Carl Eugen Hoyos <ceffmpeg at gmail.com> | Tue Aug 29 01:33:47 2017 +0200| [d4fbe99dabe712d1fbda81bc060f325f8937862e] | committer: Carl Eugen Hoyos
lavf/dump: Remove superfluous cast.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d4fbe99dabe712d1fbda81bc060f325f8937862e
---
libavformat/dump.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/dump.c b/libavformat/dump.c
index 8fd58a0dba..77043e3fdb 100644
--- a/libavformat/dump.c
+++ b/libavformat/dump.c
@@ -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");
More information about the ffmpeg-cvslog
mailing list