From b56e34c5e90a86b9f856f05362f50135d9845096 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Fri, 20 Mar 2009 00:18:46 +0000 Subject: 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 --- libavutil/aes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavutil/aes.c') 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); -- cgit v1.2.3