1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-02-04 06:08:26 +02:00

Snow : use non-NULL context for av_log.

Originally committed as revision 21089 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Jai Menon 2010-01-08 14:45:24 +00:00
parent 8ec5a042e4
commit 2da16f288a

View File

@ -4016,7 +4016,7 @@ static void iterative_me(SnowContext *s){
} }
} }
} }
av_log(NULL, AV_LOG_ERROR, "pass:%d changed:%d\n", pass, change); av_log(s->avctx, AV_LOG_ERROR, "pass:%d changed:%d\n", pass, change);
if(!change) if(!change)
break; break;
} }
@ -4058,7 +4058,7 @@ static void iterative_me(SnowContext *s){
change++; change++;
} }
} }
av_log(NULL, AV_LOG_ERROR, "pass:4mv changed:%d\n", change*4); av_log(s->avctx, AV_LOG_ERROR, "pass:4mv changed:%d\n", change*4);
} }
} }