summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-04-04 16:10:47 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-04-04 16:22:01 +0200
commit398491ae017a13ab2f84582880f42fa0f951d2aa (patch)
treec05782138bf3260fe5e3dcb0cccd5450d3eec1ef /libavfilter
parent6c7b5b7b331e20594d32d0cccf55d94d77ac2c0c (diff)
vf_idet: pass context to av_log()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_idet.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavfilter/vf_idet.c b/libavfilter/vf_idet.c
index cd801b96ba..2fbb7112ad 100644
--- a/libavfilter/vf_idet.c
+++ b/libavfilter/vf_idet.c
@@ -97,19 +97,19 @@ static void filter(AVFilterContext *ctx)
#endif
if (alpha[0] / (float)alpha[1] > idet->interlace_threshold){
- av_log(0, AV_LOG_INFO, "Interlaced, top field first\n");
+ av_log(ctx, AV_LOG_INFO, "Interlaced, top field first\n");
t++;
}else if(alpha[1] / (float)alpha[0] > idet->interlace_threshold){
- av_log(0, AV_LOG_INFO, "Interlaced, bottom field first\n");
+ av_log(ctx, AV_LOG_INFO, "Interlaced, bottom field first\n");
b++;
}else if(alpha[1] / (float)delta > idet->progressive_threshold){
- av_log(0, AV_LOG_INFO, "Progressive\n");
+ av_log(ctx, AV_LOG_INFO, "Progressive\n");
p++;
}else{
- av_log(0, AV_LOG_INFO, "Undetermined\n");
+ av_log(ctx, AV_LOG_INFO, "Undetermined\n");
u++;
}
-// av_log(0,0, "t%d b%d p%d u%d\n", t,b,p,u);
+// av_log(ctx,0, "t%d b%d p%d u%d\n", t,b,p,u);
}
static void return_frame(AVFilterContext *ctx)