Commit 7bd06f9a authored by jai_menon's avatar jai_menon

Snow : use non-NULL context for av_log.



git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21089 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 30889167
...@@ -4016,7 +4016,7 @@ static void iterative_me(SnowContext *s){ ...@@ -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){ ...@@ -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);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment