Mercurial > libavutil.hg
changeset 698:8e9c6361e909 libavutil
Make AES test program compile again: Setting the av_log_level variable
needs to be replaced by a call to av_log_set_level().
author | diego |
---|---|
date | Fri, 20 Mar 2009 00:18:46 +0000 |
parents | 1ca023f2f39d |
children | 488f5e48fdda |
files | aes.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/aes.c Thu Mar 19 14:49:47 2009 +0000 +++ b/aes.c Fri Mar 20 00:18:46 2009 +0000 @@ -212,7 +212,7 @@ 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);