00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00028 #include "libavutil/pixdesc.h"
00029 #include "libswscale/swscale.h"
00030
00031 #include "avfilter.h"
00032 #include "formats.h"
00033 #include "internal.h"
00034
00035 #define RADIUS_MIN 0.1
00036 #define RADIUS_MAX 5.0
00037
00038 #define STRENGTH_MIN -1.0
00039 #define STRENGTH_MAX 1.0
00040
00041 #define THRESHOLD_MIN -30
00042 #define THRESHOLD_MAX 30
00043
00044 typedef struct {
00045 float radius;
00046 float strength;
00047 int threshold;
00048 float quality;
00049 struct SwsContext *filter_context;
00050 } FilterParam;
00051
00052 typedef struct {
00053 FilterParam luma;
00054 FilterParam chroma;
00055 int hsub;
00056 int vsub;
00057 unsigned int sws_flags;
00058 } SmartblurContext;
00059
00060 #define CHECK_PARAM(param, name, min, max, format, ret) \
00061 if (param < min || param > max) { \
00062 av_log(ctx, AV_LOG_ERROR, \
00063 "Invalid " #name " value " #format ": " \
00064 "must be included between range " #format " and " #format "\n",\
00065 param, min, max); \
00066 ret = AVERROR(EINVAL); \
00067 }
00068
00069 static av_cold int init(AVFilterContext *ctx, const char *args)
00070 {
00071 SmartblurContext *sblur = ctx->priv;
00072 int n = 0, ret = 0;
00073 float lradius, lstrength, cradius, cstrength;
00074 int lthreshold, cthreshold;
00075
00076 if (args)
00077 n = sscanf(args, "%f:%f:%d:%f:%f:%d",
00078 &lradius, &lstrength, <hreshold,
00079 &cradius, &cstrength, &cthreshold);
00080
00081 if (n != 3 && n != 6) {
00082 av_log(ctx, AV_LOG_ERROR,
00083 "Incorrect number of parameters or invalid syntax: "
00084 "must be luma_radius:luma_strength:luma_threshold"
00085 "[:chroma_radius:chroma_strength:chroma_threshold]\n");
00086 return AVERROR(EINVAL);
00087 }
00088
00089 sblur->luma.radius = lradius;
00090 sblur->luma.strength = lstrength;
00091 sblur->luma.threshold = lthreshold;
00092
00093 if (n == 3) {
00094 sblur->chroma.radius = sblur->luma.radius;
00095 sblur->chroma.strength = sblur->luma.strength;
00096 sblur->chroma.threshold = sblur->luma.threshold;
00097 } else {
00098 sblur->chroma.radius = cradius;
00099 sblur->chroma.strength = cstrength;
00100 sblur->chroma.threshold = cthreshold;
00101 }
00102
00103 sblur->luma.quality = sblur->chroma.quality = 3.0;
00104 sblur->sws_flags = SWS_BICUBIC;
00105
00106 CHECK_PARAM(lradius, luma radius, RADIUS_MIN, RADIUS_MAX, %0.1f, ret)
00107 CHECK_PARAM(lstrength, luma strength, STRENGTH_MIN, STRENGTH_MAX, %0.1f, ret)
00108 CHECK_PARAM(lthreshold, luma threshold, THRESHOLD_MIN, THRESHOLD_MAX, %d, ret)
00109
00110 if (n != 3) {
00111 CHECK_PARAM(sblur->chroma.radius, chroma radius, RADIUS_MIN, RADIUS_MAX, %0.1f, ret)
00112 CHECK_PARAM(sblur->chroma.strength, chroma strength, STRENGTH_MIN, STRENGTH_MAX, %0.1f, ret)
00113 CHECK_PARAM(sblur->chroma.threshold, chroma threshold, THRESHOLD_MIN,THRESHOLD_MAX, %d, ret)
00114 }
00115
00116 return ret;
00117 }
00118
00119 static av_cold void uninit(AVFilterContext *ctx)
00120 {
00121 SmartblurContext *sblur = ctx->priv;
00122
00123 sws_freeContext(sblur->luma.filter_context);
00124 sws_freeContext(sblur->chroma.filter_context);
00125 }
00126
00127 static int query_formats(AVFilterContext *ctx)
00128 {
00129 static const enum PixelFormat pix_fmts[] = {
00130 PIX_FMT_YUV444P, PIX_FMT_YUV422P,
00131 PIX_FMT_YUV420P, PIX_FMT_YUV411P,
00132 PIX_FMT_YUV410P, PIX_FMT_YUV440P,
00133 PIX_FMT_GRAY8,
00134 PIX_FMT_NONE
00135 };
00136
00137 ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
00138
00139 return 0;
00140 }
00141
00142 static int alloc_sws_context(FilterParam *f, int width, int height, unsigned int flags)
00143 {
00144 SwsVector *vec;
00145 SwsFilter sws_filter;
00146
00147 vec = sws_getGaussianVec(f->radius, f->quality);
00148
00149 if (!vec)
00150 return AVERROR(EINVAL);
00151
00152 sws_scaleVec(vec, f->strength);
00153 vec->coeff[vec->length / 2] += 1.0 - f->strength;
00154 sws_filter.lumH = sws_filter.lumV = vec;
00155 sws_filter.chrH = sws_filter.chrV = NULL;
00156 f->filter_context = sws_getCachedContext(NULL,
00157 width, height, PIX_FMT_GRAY8,
00158 width, height, PIX_FMT_GRAY8,
00159 flags, &sws_filter, NULL, NULL);
00160
00161 sws_freeVec(vec);
00162
00163 if (!f->filter_context)
00164 return AVERROR(EINVAL);
00165
00166 return 0;
00167 }
00168
00169 static int config_props(AVFilterLink *inlink)
00170 {
00171 SmartblurContext *sblur = inlink->dst->priv;
00172 const AVPixFmtDescriptor *desc = &av_pix_fmt_descriptors[inlink->format];
00173
00174 sblur->hsub = desc->log2_chroma_w;
00175 sblur->vsub = desc->log2_chroma_h;
00176
00177 alloc_sws_context(&sblur->luma, inlink->w, inlink->h, sblur->sws_flags);
00178 alloc_sws_context(&sblur->chroma,
00179 inlink->w >> sblur->hsub, inlink->h >> sblur->vsub,
00180 sblur->sws_flags);
00181
00182 return 0;
00183 }
00184
00185 static void blur(uint8_t *dst, const int dst_linesize,
00186 const uint8_t *src, const int src_linesize,
00187 const int w, const int h, const int threshold,
00188 struct SwsContext *filter_context)
00189 {
00190 int x, y;
00191 int orig, filtered;
00192 int diff;
00193
00194 const uint8_t* const src_array[4] = {src};
00195 uint8_t *dst_array[4] = {dst};
00196 int src_linesize_array[4] = {src_linesize};
00197 int dst_linesize_array[4] = {dst_linesize};
00198
00199 sws_scale(filter_context, src_array, src_linesize_array,
00200 0, h, dst_array, dst_linesize_array);
00201
00202 if (threshold > 0) {
00203 for (y = 0; y < h; ++y) {
00204 for (x = 0; x < w; ++x) {
00205 orig = src[x + y * src_linesize];
00206 filtered = dst[x + y * dst_linesize];
00207 diff = orig - filtered;
00208
00209 if (diff > 0) {
00210 if (diff > 2 * threshold)
00211 dst[x + y * dst_linesize] = orig;
00212 else if (diff > threshold)
00213
00214 dst[x + y * dst_linesize] = orig - threshold;
00215 } else {
00216 if (-diff > 2 * threshold)
00217 dst[x + y * dst_linesize] = orig;
00218 else if (-diff > threshold)
00219
00220 dst[x + y * dst_linesize] = orig + threshold;
00221 }
00222 }
00223 }
00224 } else if (threshold < 0) {
00225 for (y = 0; y < h; ++y) {
00226 for (x = 0; x < w; ++x) {
00227 orig = src[x + y * src_linesize];
00228 filtered = dst[x + y * dst_linesize];
00229 diff = orig - filtered;
00230
00231 if (diff > 0) {
00232 if (diff <= -threshold)
00233 dst[x + y * dst_linesize] = orig;
00234 else if (diff <= -2 * threshold)
00235
00236 dst[x + y * dst_linesize] = filtered - threshold;
00237 } else {
00238 if (diff >= threshold)
00239 dst[x + y * dst_linesize] = orig;
00240 else if (diff >= 2 * threshold)
00241
00242 dst[x + y * dst_linesize] = filtered + threshold;
00243 }
00244 }
00245 }
00246 }
00247 }
00248
00249 static int end_frame(AVFilterLink *inlink)
00250 {
00251 SmartblurContext *sblur = inlink->dst->priv;
00252 AVFilterBufferRef *inpic = inlink->cur_buf;
00253 AVFilterBufferRef *outpic = inlink->dst->outputs[0]->out_buf;
00254 int cw = inlink->w >> sblur->hsub;
00255 int ch = inlink->h >> sblur->vsub;
00256
00257 blur(outpic->data[0], outpic->linesize[0],
00258 inpic->data[0], inpic->linesize[0],
00259 inlink->w, inlink->h, sblur->luma.threshold,
00260 sblur->luma.filter_context);
00261
00262 if (inpic->data[2]) {
00263 blur(outpic->data[1], outpic->linesize[1],
00264 inpic->data[1], inpic->linesize[1],
00265 cw, ch, sblur->chroma.threshold,
00266 sblur->chroma.filter_context);
00267 blur(outpic->data[2], outpic->linesize[2],
00268 inpic->data[2], inpic->linesize[2],
00269 cw, ch, sblur->chroma.threshold,
00270 sblur->chroma.filter_context);
00271 }
00272
00273 return ff_end_frame(inlink->dst->outputs[0]);
00274 }
00275
00276 AVFilter avfilter_vf_smartblur = {
00277 .name = "smartblur",
00278 .description = NULL_IF_CONFIG_SMALL("Blur the input video without impacting the outlines."),
00279
00280 .priv_size = sizeof(SmartblurContext),
00281
00282 .init = init,
00283 .uninit = uninit,
00284 .query_formats = query_formats,
00285
00286 .inputs = (const AVFilterPad[]) {
00287 {
00288 .name = "default",
00289 .type = AVMEDIA_TYPE_VIDEO,
00290 .end_frame = end_frame,
00291 .config_props = config_props,
00292 .min_perms = AV_PERM_READ,
00293 },
00294 { .name = NULL }
00295 },
00296 .outputs = (const AVFilterPad[]) {
00297 {
00298 .name = "default",
00299 .type = AVMEDIA_TYPE_VIDEO,
00300 },
00301 { .name = NULL }
00302 }
00303 };