Browse Source

vf_idet: pass context to av_log()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.11
Michael Niedermayer 14 years ago
parent
commit
398491ae01
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      libavfilter/vf_idet.c

+ 5
- 5
libavfilter/vf_idet.c 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)


Loading…
Cancel
Save