Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJai Menon <jmenon86@gmail.com>2010-01-08 17:45:24 +0300
committerJai Menon <jmenon86@gmail.com>2010-01-08 17:45:24 +0300
commit2da16f288a4dfb0365e955c2e15caa3f1fbb99da (patch)
treeb9e8160da5178898e242d45f11a5ab2a7184d6a3 /libavcodec/snow.c
parent8ec5a042e4115c681244e745f8e27a6feace11d9 (diff)
Snow : use non-NULL context for av_log.
Originally committed as revision 21089 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/snow.c')
-rw-r--r--libavcodec/snow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/snow.c b/libavcodec/snow.c
index 8c79709e57..76f0b35f2d 100644
--- a/libavcodec/snow.c
+++ b/libavcodec/snow.c
@@ -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)
break;
}
@@ -4058,7 +4058,7 @@ static void iterative_me(SnowContext *s){
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);
}
}