Commit e3866ea2 authored by James Almer's avatar James Almer

fftools/ffmpeg: fix mixed code and declarations

Reviewed-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent 649087fa
...@@ -4727,8 +4727,7 @@ static int transcode(void) ...@@ -4727,8 +4727,7 @@ static int transcode(void)
static BenchmarkTimeStamps get_benchmark_time_stamps(void) static BenchmarkTimeStamps get_benchmark_time_stamps(void)
{ {
BenchmarkTimeStamps time_stamps; BenchmarkTimeStamps time_stamps = { av_gettime_relative() };
time_stamps.real_usec = av_gettime_relative();
#if HAVE_GETRUSAGE #if HAVE_GETRUSAGE
struct rusage rusage; struct rusage rusage;
...@@ -4833,10 +4832,11 @@ int main(int argc, char **argv) ...@@ -4833,10 +4832,11 @@ int main(int argc, char **argv)
if (transcode() < 0) if (transcode() < 0)
exit_program(1); exit_program(1);
if (do_benchmark) { if (do_benchmark) {
int64_t utime, stime, rtime;
current_time = get_benchmark_time_stamps(); current_time = get_benchmark_time_stamps();
int64_t utime = current_time.user_usec - ti.user_usec; utime = current_time.user_usec - ti.user_usec;
int64_t stime = current_time.sys_usec - ti.sys_usec; stime = current_time.sys_usec - ti.sys_usec;
int64_t rtime = current_time.real_usec - ti.real_usec; rtime = current_time.real_usec - ti.real_usec;
av_log(NULL, AV_LOG_INFO, av_log(NULL, AV_LOG_INFO,
"bench: utime=%0.3fs stime=%0.3fs rtime=%0.3fs\n", "bench: utime=%0.3fs stime=%0.3fs rtime=%0.3fs\n",
utime / 1000000.0, stime / 1000000.0, rtime / 1000000.0); utime / 1000000.0, stime / 1000000.0, rtime / 1000000.0);
......
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