avfilter/vf_dctdnoiz: use AVFilterContext for logging
This commit is contained in:
parent
d84a21a023
commit
b02d6fc556
1 changed files with 1 additions and 1 deletions
|
|
@ -632,7 +632,7 @@ static av_cold int init(AVFilterContext *ctx)
|
|||
s->overlap = s->bsize - 1;
|
||||
|
||||
if (s->overlap > s->bsize - 1) {
|
||||
av_log(s, AV_LOG_ERROR, "Overlap value can not except %d "
|
||||
av_log(ctx, AV_LOG_ERROR, "Overlap value can not except %d "
|
||||
"with a block size of %dx%d\n",
|
||||
s->bsize - 1, s->bsize, s->bsize);
|
||||
return AVERROR(EINVAL);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue