diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-01-15 01:33:56 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-01-15 01:33:56 +0000 |
commit | 0d80bd2f56eba268ac074cce863442e1de99126d (patch) | |
tree | 0628040fa65a11e2031c7121d9969ec2e3ee7722 /libavutil/aes.c | |
parent | 6572e1a4d28906eba31f5153392645c9d508d904 (diff) | |
download | ffmpeg-0d80bd2f56eba268ac074cce863442e1de99126d.tar.gz |
move #include log.h into the selftesting code where it belongs
Originally committed as revision 7529 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/aes.c')
-rw-r--r-- | libavutil/aes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/aes.c b/libavutil/aes.c index 36bc524899..7214e077ab 100644 --- a/libavutil/aes.c +++ b/libavutil/aes.c @@ -21,7 +21,6 @@ */ #include "common.h" -#include "log.h" #include "aes.h" typedef struct AVAES{ @@ -182,6 +181,7 @@ int av_aes_init(AVAES *a, uint8_t *key, int key_bits, int decrypt) { } #ifdef TEST +#include "log.h" int main(){ int i,j; |