Commit 476a3a49 authored by diego's avatar diego

Make AES test program compile again: Setting the av_log_level variable

needs to be replaced by a call to av_log_set_level().


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18055 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f8d2b0e2
...@@ -212,7 +212,7 @@ int main(void){ ...@@ -212,7 +212,7 @@ int main(void){
av_aes_init(&ae, "PI=3.141592654..", 128, 0); av_aes_init(&ae, "PI=3.141592654..", 128, 0);
av_aes_init(&ad, "PI=3.141592654..", 128, 1); 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++){ for(i=0; i<2; i++){
av_aes_init(&b, rkey[i], 128, 1); av_aes_init(&b, rkey[i], 128, 1);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment