|
|
|
@ -203,7 +203,7 @@ static int query_formats(AVFilterContext *ctx) |
|
|
|
|
static int init_filter_param(AVFilterContext *ctx, FilterParam *fp, const char *effect_type, int width) |
|
|
|
|
{ |
|
|
|
|
int z; |
|
|
|
|
const char *effect; |
|
|
|
|
const char *effect = fp->amount == 0 ? "none" : fp->amount < 0 ? "blur" : "sharpen"; |
|
|
|
|
|
|
|
|
|
if (!(fp->msize_x & fp->msize_y & 1)) { |
|
|
|
|
av_log(ctx, AV_LOG_ERROR, |
|
|
|
@ -212,8 +212,6 @@ static int init_filter_param(AVFilterContext *ctx, FilterParam *fp, const char * |
|
|
|
|
return AVERROR(EINVAL); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
effect = fp->amount == 0 ? "none" : fp->amount < 0 ? "blur" : "sharpen"; |
|
|
|
|
|
|
|
|
|
av_log(ctx, AV_LOG_VERBOSE, "effect:%s type:%s msize_x:%d msize_y:%d amount:%0.2f\n", |
|
|
|
|
effect, effect_type, fp->msize_x, fp->msize_y, fp->amount / 65535.0); |
|
|
|
|
|
|
|
|
|