Browse Source

dct-test: Improve CPU flags struct member name

tags/n2.4
Diego Biurrun 12 years ago
parent
commit
746ad4e0df
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/dct-test.c

+ 2
- 2
libavcodec/dct-test.c View File

@@ -62,7 +62,7 @@ struct algo {
void (*func)(int16_t *block);
enum formattag { NO_PERM, MMX_PERM, MMX_SIMPLE_PERM, SCALE_PERM,
SSE2_PERM, PARTTRANS_PERM } format;
int mm_support;
int cpu_flag;
int nonspec;
};

@@ -503,7 +503,7 @@ int main(int argc, char **argv)
const int cpu_flags = av_get_cpu_flags();
const struct algo *algos = test_idct ? idct_tab : fdct_tab;
for (i = 0; algos[i].name; i++)
if (!(~cpu_flags & algos[i].mm_support)) {
if (!(~cpu_flags & algos[i].cpu_flag)) {
err |= dct_error(&algos[i], test, test_idct, speed);
}
}


Loading…
Cancel
Save