Mercurial > libavutil.hg
comparison softfloat.c @ 699:488f5e48fdda libavutil
Make softfloat 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:23:13 +0000 |
| parents | f9a4c04ebb0e |
| children |
comparison
equal
deleted
inserted
replaced
| 698:8e9c6361e909 | 699:488f5e48fdda |
|---|---|
| 30 int main(void){ | 30 int main(void){ |
| 31 SoftFloat one= av_int2sf(1, 0); | 31 SoftFloat one= av_int2sf(1, 0); |
| 32 SoftFloat sf1, sf2; | 32 SoftFloat sf1, sf2; |
| 33 double d1, d2; | 33 double d1, d2; |
| 34 int i, j; | 34 int i, j; |
| 35 av_log_level = AV_LOG_DEBUG; | 35 av_log_set_level(AV_LOG_DEBUG); |
| 36 | 36 |
| 37 d1= 1; | 37 d1= 1; |
| 38 for(i= 0; i<10; i++){ | 38 for(i= 0; i<10; i++){ |
| 39 d1= 1/(d1+1); | 39 d1= 1/(d1+1); |
| 40 } | 40 } |
