Commit 9101ef67 authored by Michael Niedermayer's avatar Michael Niedermayer

avutil/cpu: output cpu data to stdout

Errors go to stderr, but the cpu stats are non error output for cputest

This fixes echoing the cpu test results
Reviewed-by: 's avatarJames Almer <jamrial@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent a8689ba8
...@@ -331,12 +331,12 @@ static void print_cpu_flags(int cpu_flags, const char *type) ...@@ -331,12 +331,12 @@ static void print_cpu_flags(int cpu_flags, const char *type)
{ {
int i; int i;
fprintf(stderr, "cpu_flags(%s) = 0x%08X\n", type, cpu_flags); printf("cpu_flags(%s) = 0x%08X\n", type, cpu_flags);
fprintf(stderr, "cpu_flags_str(%s) =", type); printf("cpu_flags_str(%s) =", type);
for (i = 0; cpu_flag_tab[i].flag; i++) for (i = 0; cpu_flag_tab[i].flag; i++)
if (cpu_flags & cpu_flag_tab[i].flag) if (cpu_flags & cpu_flag_tab[i].flag)
fprintf(stderr, " %s", cpu_flag_tab[i].name); printf(" %s", cpu_flag_tab[i].name);
fprintf(stderr, "\n"); printf("\n");
} }
...@@ -382,7 +382,7 @@ int main(int argc, char **argv) ...@@ -382,7 +382,7 @@ int main(int argc, char **argv)
print_cpu_flags(cpu_flags_raw, "raw"); print_cpu_flags(cpu_flags_raw, "raw");
print_cpu_flags(cpu_flags_eff, "effective"); print_cpu_flags(cpu_flags_eff, "effective");
fprintf(stderr, "threads = %s (cpu_count = %d)\n", threads, cpu_count); printf("threads = %s (cpu_count = %d)\n", threads, cpu_count);
return 0; return 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