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
This commit is contained in:
Diego Biurrun 2009-03-20 00:18:46 +00:00
parent 54ea773614
commit b56e34c5e9
1 changed files with 1 additions and 1 deletions

View File

@ -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);