diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2016-10-07 13:18:05 +0200 |
---|---|---|
committer | Hendrik Leppkes <h.leppkes@gmail.com> | 2016-10-07 13:18:05 +0200 |
commit | 6fc74934de1fcd82ace75dfff17605ec41c7e90d (patch) | |
tree | 2c26ca1667225bda75e66dc6d6d1d04d30bf339f /tests/checkasm/checkasm.h | |
parent | 6f74e3cde6147b9a9bda5071e505e9ffbb99096a (diff) | |
parent | dc7501e524dc3270335749302c7aa449973625f3 (diff) | |
download | ffmpeg-6fc74934de1fcd82ace75dfff17605ec41c7e90d.tar.gz |
Merge commit 'dc7501e524dc3270335749302c7aa449973625f3'
* commit 'dc7501e524dc3270335749302c7aa449973625f3':
checkasm: Issue emms after benchmarking functions
Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
Diffstat (limited to 'tests/checkasm/checkasm.h')
-rw-r--r-- | tests/checkasm/checkasm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/checkasm/checkasm.h b/tests/checkasm/checkasm.h index 17374b43ad..7877251142 100644 --- a/tests/checkasm/checkasm.h +++ b/tests/checkasm/checkasm.h @@ -27,6 +27,7 @@ #include "config.h" #include "libavutil/avstring.h" #include "libavutil/cpu.h" +#include "libavutil/internal.h" #include "libavutil/lfg.h" #include "libavutil/timer.h" @@ -167,6 +168,7 @@ void checkasm_checked_call(void *func, ...); tcount++;\ }\ }\ + emms_c();\ checkasm_update_bench(tcount, tsum);\ }\ } while (0) |