diff options
author | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2017-08-29 01:33:47 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2017-08-29 01:33:47 +0200 |
commit | d4fbe99dabe712d1fbda81bc060f325f8937862e (patch) | |
tree | 3ad780ae51416df7d5a28ccb0a60a4a6bf38cc98 /libavformat/dump.c | |
parent | b264810ef7a3fcd7cfc8e232877cfb2fdf7954f6 (diff) | |
download | ffmpeg-d4fbe99dabe712d1fbda81bc060f325f8937862e.tar.gz |
lavf/dump: Remove superfluous cast.
Diffstat (limited to 'libavformat/dump.c')
-rw-r--r-- | libavformat/dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
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"); |