projects
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
54ea773
)
Make AES test program compile again: Setting the av_log_level variable
author
Diego Biurrun
<diego@biurrun.de>
Fri, 20 Mar 2009 00:18:46 +0000
(
00:18
+0000)
committer
Diego Biurrun
<diego@biurrun.de>
Fri, 20 Mar 2009 00:18:46 +0000
(
00:18
+0000)
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
patch
|
blob
|
blame
|
history
diff --git
a/libavutil/aes.c
b/libavutil/aes.c
index
cc3537a
..
26bc43f
100644
(file)
--- 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);