aboutsummaryrefslogtreecommitdiffstats
path: root/libavutil/tests/aes.c
diff options
context:
space:
mode:
authorClément Bœsch <cboesch@gopro.com>2017-09-07 15:52:47 +0200
committerClément Bœsch <u@pkh.me>2017-09-08 18:51:05 +0200
commite0b9b3e60ea3b970c5fcdbccb401cd9d93b9a63f (patch)
tree3fad1b596b3fc703131c49ca15d2cab9eb63e449 /libavutil/tests/aes.c
parentdc27df47ff99fb29ed36711a62efb78ee28dba97 (diff)
downloadffmpeg-e0b9b3e60ea3b970c5fcdbccb401cd9d93b9a63f.tar.gz
lavu/tests: move timer.h include earlier
In the next commit, timer.h will require a _GNU_SOURCE to be set before including system headers. This commit prevents compilation failures.
Diffstat (limited to 'libavutil/tests/aes.c')
-rw-r--r--libavutil/tests/aes.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavutil/tests/aes.c b/libavutil/tests/aes.c
index 1291ad6633..c7f842c1c7 100644
--- a/libavutil/tests/aes.c
+++ b/libavutil/tests/aes.c
@@ -17,6 +17,9 @@
*/
// LCOV_EXCL_START
+
+#include "libavutil/timer.h"
+
#include <string.h>
#include "libavutil/aes.h"