diff options
author | Janne Grunau <janne-libav@jannau.net> | 2014-01-23 16:20:23 +0100 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2014-01-25 21:50:20 +0100 |
commit | fb0c9d41d685abb58575c5482ca33b8cd457c5ec (patch) | |
tree | f06b9bf7072a95a5afaa160e51d05d9bb894ea94 /libavutil/aes.c | |
parent | 28e1eed3c2e7e944f1d73dc749076943aeb4c13c (diff) | |
download | ffmpeg-fb0c9d41d685abb58575c5482ca33b8cd457c5ec.tar.gz |
avutil: remove timer.h include from internal.h
Added libavutil/timer.h include to all files with {START,STOP}_TIMER.
Diffstat (limited to 'libavutil/aes.c')
-rw-r--r-- | libavutil/aes.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/aes.c b/libavutil/aes.c index 4656a48634..3ba5e9aef4 100644 --- a/libavutil/aes.c +++ b/libavutil/aes.c @@ -23,6 +23,7 @@ #include "common.h" #include "aes.h" #include "intreadwrite.h" +#include "timer.h" typedef union { uint64_t u64[2]; |