Browse Source

Make softfloat 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 18056 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Diego Biurrun 17 years ago
parent
commit
7349392535
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/softfloat.c

+ 1
- 1
libavutil/softfloat.c View File

@@ -32,7 +32,7 @@ int main(void){
SoftFloat sf1, sf2;
double d1, d2;
int i, j;
av_log_level = AV_LOG_DEBUG;
av_log_set_level(AV_LOG_DEBUG);

d1= 1;
for(i= 0; i<10; i++){


Loading…
Cancel
Save