diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-03-20 00:18:46 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-03-20 00:18:46 +0000 |
commit | b56e34c5e90a86b9f856f05362f50135d9845096 (patch) | |
tree | fcb02c063e49a10d68a5d8a286db99ec0cba4a49 | |
parent | 54ea773614e6dd43e31f870cde969d762f2deba6 (diff) | |
download | ffmpeg-b56e34c5e90a86b9f856f05362f50135d9845096.tar.gz |
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
-rw-r--r-- | libavutil/aes.c | 2 |
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); |