summaryrefslogtreecommitdiff
path: root/libavutil/aes.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-03-20 00:18:46 +0000
committerDiego Biurrun <diego@biurrun.de>2009-03-20 00:18:46 +0000
commitb56e34c5e90a86b9f856f05362f50135d9845096 (patch)
treefcb02c063e49a10d68a5d8a286db99ec0cba4a49 /libavutil/aes.c
parent54ea773614e6dd43e31f870cde969d762f2deba6 (diff)
Make AES test program compile again: Setting the av_log_level variable
needs to be replaced by a call to av_log_set_level(). Originally committed as revision 18055 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 cc3537afab..26bc43fc5d 100644
--- a/libavutil/aes.c
+++ b/libavutil/aes.c
@@ -212,7 +212,7 @@ int main(void){
av_aes_init(&ae, "PI=3.141592654..", 128, 0);
av_aes_init(&ad, "PI=3.141592654..", 128, 1);
- av_log_level= AV_LOG_DEBUG;
+ av_log_set_level(AV_LOG_DEBUG);
for(i=0; i<2; i++){
av_aes_init(&b, rkey[i], 128, 1);