1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

vf_idet: pass context to av_log()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-04-04 16:10:47 +02:00
parent 6c7b5b7b33
commit 398491ae01

View File

@ -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)