Commit d4fbe99d authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

lavf/dump: Remove superfluous cast.

parent b264810e
...@@ -595,7 +595,7 @@ void av_dump_format(AVFormatContext *ic, int index, ...@@ -595,7 +595,7 @@ void av_dump_format(AVFormatContext *ic, int index,
} }
av_log(NULL, AV_LOG_INFO, ", bitrate: "); av_log(NULL, AV_LOG_INFO, ", bitrate: ");
if (ic->bit_rate) 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 else
av_log(NULL, AV_LOG_INFO, "N/A"); av_log(NULL, AV_LOG_INFO, "N/A");
av_log(NULL, AV_LOG_INFO, "\n"); av_log(NULL, AV_LOG_INFO, "\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment