Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-01-15 04:33:56 +0300
committerMichael Niedermayer <michaelni@gmx.at>2007-01-15 04:33:56 +0300
commit0d80bd2f56eba268ac074cce863442e1de99126d (patch)
tree0628040fa65a11e2031c7121d9969ec2e3ee7722 /libavutil/aes.c
parent6572e1a4d28906eba31f5153392645c9d508d904 (diff)
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.c2
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;