You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

286 lines
10KB

  1. /*
  2. * Copyright (c) 2002 Jindrich Makovicka <makovick@gmail.com>
  3. * Copyright (c) 2011 Stefano Sabatini
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License along
  18. * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
  19. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  20. */
  21. /**
  22. * @file
  23. * A very simple tv station logo remover
  24. * Ported from MPlayer libmpcodecs/vf_delogo.c.
  25. */
  26. #include "libavutil/imgutils.h"
  27. #include "libavutil/opt.h"
  28. #include "libavutil/pixdesc.h"
  29. #include "avfilter.h"
  30. #include "formats.h"
  31. #include "video.h"
  32. /**
  33. * Apply a simple delogo algorithm to the image in dst and put the
  34. * result in src.
  35. *
  36. * The algorithm is only applied to the region specified by the logo
  37. * parameters.
  38. *
  39. * @param w width of the input image
  40. * @param h height of the input image
  41. * @param logo_x x coordinate of the top left corner of the logo region
  42. * @param logo_y y coordinate of the top left corner of the logo region
  43. * @param logo_w width of the logo
  44. * @param logo_h height of the logo
  45. * @param band the size of the band around the processed area
  46. * @param show show a rectangle around the processed area, useful for
  47. * parameters tweaking
  48. * @param direct if non-zero perform in-place processing
  49. */
  50. static void apply_delogo(uint8_t *dst, int dst_linesize,
  51. uint8_t *src, int src_linesize,
  52. int w, int h,
  53. int logo_x, int logo_y, int logo_w, int logo_h,
  54. int band, int show, int direct)
  55. {
  56. int x, y;
  57. int interp, dist;
  58. uint8_t *xdst, *xsrc;
  59. uint8_t *topleft, *botleft, *topright;
  60. int xclipl, xclipr, yclipt, yclipb;
  61. int logo_x1, logo_x2, logo_y1, logo_y2;
  62. xclipl = FFMAX(-logo_x, 0);
  63. xclipr = FFMAX(logo_x+logo_w-w, 0);
  64. yclipt = FFMAX(-logo_y, 0);
  65. yclipb = FFMAX(logo_y+logo_h-h, 0);
  66. logo_x1 = logo_x + xclipl;
  67. logo_x2 = logo_x + logo_w - xclipr;
  68. logo_y1 = logo_y + yclipt;
  69. logo_y2 = logo_y + logo_h - yclipb;
  70. topleft = src+logo_y1 * src_linesize+logo_x1;
  71. topright = src+logo_y1 * src_linesize+logo_x2-1;
  72. botleft = src+(logo_y2-1) * src_linesize+logo_x1;
  73. dst += (logo_y1+1)*dst_linesize;
  74. src += (logo_y1+1)*src_linesize;
  75. if (!direct)
  76. av_image_copy_plane(dst, dst_linesize, src, src_linesize, w, h);
  77. for (y = logo_y1+1; y < logo_y2-1; y++) {
  78. for (x = logo_x1+1,
  79. xdst = dst+logo_x1+1,
  80. xsrc = src+logo_x1+1; x < logo_x2-1; x++, xdst++, xsrc++) {
  81. interp =
  82. (topleft[src_linesize*(y-logo_y -yclipt)] +
  83. topleft[src_linesize*(y-logo_y-1-yclipt)] +
  84. topleft[src_linesize*(y-logo_y+1-yclipt)]) * (logo_w-(x-logo_x))/logo_w
  85. +
  86. (topright[src_linesize*(y-logo_y-yclipt)] +
  87. topright[src_linesize*(y-logo_y-1-yclipt)] +
  88. topright[src_linesize*(y-logo_y+1-yclipt)]) * (x-logo_x)/logo_w
  89. +
  90. (topleft[x-logo_x-xclipl] +
  91. topleft[x-logo_x-1-xclipl] +
  92. topleft[x-logo_x+1-xclipl]) * (logo_h-(y-logo_y))/logo_h
  93. +
  94. (botleft[x-logo_x-xclipl] +
  95. botleft[x-logo_x-1-xclipl] +
  96. botleft[x-logo_x+1-xclipl]) * (y-logo_y)/logo_h;
  97. interp /= 6;
  98. if (y >= logo_y+band && y < logo_y+logo_h-band &&
  99. x >= logo_x+band && x < logo_x+logo_w-band) {
  100. *xdst = interp;
  101. } else {
  102. dist = 0;
  103. if (x < logo_x+band)
  104. dist = FFMAX(dist, logo_x-x+band);
  105. else if (x >= logo_x+logo_w-band)
  106. dist = FFMAX(dist, x-(logo_x+logo_w-1-band));
  107. if (y < logo_y+band)
  108. dist = FFMAX(dist, logo_y-y+band);
  109. else if (y >= logo_y+logo_h-band)
  110. dist = FFMAX(dist, y-(logo_y+logo_h-1-band));
  111. *xdst = (*xsrc*dist + interp*(band-dist))/band;
  112. if (show && (dist == band-1))
  113. *xdst = 0;
  114. }
  115. }
  116. dst += dst_linesize;
  117. src += src_linesize;
  118. }
  119. }
  120. typedef struct {
  121. const AVClass *class;
  122. int x, y, w, h, band, show;
  123. } DelogoContext;
  124. #define OFFSET(x) offsetof(DelogoContext, x)
  125. static const AVOption delogo_options[]= {
  126. {"x", "set logo x position", OFFSET(x), AV_OPT_TYPE_INT, {.dbl=-1}, -1, INT_MAX },
  127. {"y", "set logo y position", OFFSET(y), AV_OPT_TYPE_INT, {.dbl=-1}, -1, INT_MAX },
  128. {"w", "set logo width", OFFSET(w), AV_OPT_TYPE_INT, {.dbl=-1}, -1, INT_MAX },
  129. {"h", "set logo height", OFFSET(h), AV_OPT_TYPE_INT, {.dbl=-1}, -1, INT_MAX },
  130. {"band", "set delogo area band size", OFFSET(band), AV_OPT_TYPE_INT, {.dbl= 4}, -1, INT_MAX },
  131. {"t", "set delogo area band size", OFFSET(band), AV_OPT_TYPE_INT, {.dbl= 4}, -1, INT_MAX },
  132. {"show", "show delogo area", OFFSET(show), AV_OPT_TYPE_INT, {.dbl= 0}, 0, 1 },
  133. {NULL},
  134. };
  135. static const AVClass delogo_class = {
  136. .class_name = "DelogoContext",
  137. .item_name = av_default_item_name,
  138. .option = delogo_options,
  139. };
  140. static int query_formats(AVFilterContext *ctx)
  141. {
  142. enum PixelFormat pix_fmts[] = {
  143. PIX_FMT_YUV444P, PIX_FMT_YUV422P, PIX_FMT_YUV420P,
  144. PIX_FMT_YUV411P, PIX_FMT_YUV410P, PIX_FMT_YUV440P,
  145. PIX_FMT_YUVA420P, PIX_FMT_GRAY8,
  146. PIX_FMT_NONE
  147. };
  148. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  149. return 0;
  150. }
  151. static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
  152. {
  153. DelogoContext *delogo = ctx->priv;
  154. int ret = 0;
  155. delogo->class = &delogo_class;
  156. av_opt_set_defaults(delogo);
  157. if (args)
  158. ret = sscanf(args, "%d:%d:%d:%d:%d",
  159. &delogo->x, &delogo->y, &delogo->w, &delogo->h, &delogo->band);
  160. if (ret == 5) {
  161. if (delogo->band < 0)
  162. delogo->show = 1;
  163. } else if ((ret = (av_set_options_string(delogo, args, "=", ":"))) < 0) {
  164. av_log(ctx, AV_LOG_ERROR, "Error parsing options string: '%s'\n", args);
  165. return ret;
  166. }
  167. #define CHECK_UNSET_OPT(opt) \
  168. if (delogo->opt == -1) { \
  169. av_log(delogo, AV_LOG_ERROR, "Option %s was not set.\n", #opt); \
  170. return AVERROR(EINVAL); \
  171. }
  172. CHECK_UNSET_OPT(x);
  173. CHECK_UNSET_OPT(y);
  174. CHECK_UNSET_OPT(w);
  175. CHECK_UNSET_OPT(h);
  176. if (delogo->show)
  177. delogo->band = 4;
  178. av_log(ctx, AV_LOG_INFO, "x:%d y:%d, w:%d h:%d band:%d show:%d\n",
  179. delogo->x, delogo->y, delogo->w, delogo->h, delogo->band, delogo->show);
  180. delogo->w += delogo->band*2;
  181. delogo->h += delogo->band*2;
  182. delogo->x -= delogo->band;
  183. delogo->y -= delogo->band;
  184. return 0;
  185. }
  186. static void start_frame(AVFilterLink *inlink, AVFilterBufferRef *inpicref)
  187. {
  188. AVFilterLink *outlink = inlink->dst->outputs[0];
  189. AVFilterBufferRef *outpicref;
  190. if (inpicref->perms & AV_PERM_PRESERVE) {
  191. outpicref = avfilter_get_video_buffer(outlink, AV_PERM_WRITE,
  192. outlink->w, outlink->h);
  193. avfilter_copy_buffer_ref_props(outpicref, inpicref);
  194. outpicref->video->w = outlink->w;
  195. outpicref->video->h = outlink->h;
  196. } else
  197. outpicref = inpicref;
  198. outlink->out_buf = outpicref;
  199. ff_start_frame(outlink, avfilter_ref_buffer(outpicref, ~0));
  200. }
  201. static void null_draw_slice(AVFilterLink *link, int y, int h, int slice_dir) { }
  202. static void end_frame(AVFilterLink *inlink)
  203. {
  204. DelogoContext *delogo = inlink->dst->priv;
  205. AVFilterLink *outlink = inlink->dst->outputs[0];
  206. AVFilterBufferRef *inpicref = inlink ->cur_buf;
  207. AVFilterBufferRef *outpicref = outlink->out_buf;
  208. int direct = inpicref == outpicref;
  209. int hsub0 = av_pix_fmt_descriptors[inlink->format].log2_chroma_w;
  210. int vsub0 = av_pix_fmt_descriptors[inlink->format].log2_chroma_h;
  211. int plane;
  212. for (plane = 0; plane < 4 && inpicref->data[plane]; plane++) {
  213. int hsub = plane == 1 || plane == 2 ? hsub0 : 0;
  214. int vsub = plane == 1 || plane == 2 ? vsub0 : 0;
  215. apply_delogo(outpicref->data[plane], outpicref->linesize[plane],
  216. inpicref ->data[plane], inpicref ->linesize[plane],
  217. inlink->w>>hsub, inlink->h>>vsub,
  218. delogo->x>>hsub, delogo->y>>vsub,
  219. delogo->w>>hsub, delogo->h>>vsub,
  220. delogo->band>>FFMIN(hsub, vsub),
  221. delogo->show, direct);
  222. }
  223. ff_draw_slice(outlink, 0, inlink->h, 1);
  224. ff_end_frame(outlink);
  225. avfilter_unref_buffer(inpicref);
  226. if (!direct)
  227. avfilter_unref_buffer(outpicref);
  228. }
  229. AVFilter avfilter_vf_delogo = {
  230. .name = "delogo",
  231. .description = NULL_IF_CONFIG_SMALL("Remove logo from input video."),
  232. .priv_size = sizeof(DelogoContext),
  233. .init = init,
  234. .query_formats = query_formats,
  235. .inputs = (const AVFilterPad[]) {{ .name = "default",
  236. .type = AVMEDIA_TYPE_VIDEO,
  237. .get_video_buffer = ff_null_get_video_buffer,
  238. .start_frame = start_frame,
  239. .draw_slice = null_draw_slice,
  240. .end_frame = end_frame,
  241. .min_perms = AV_PERM_WRITE | AV_PERM_READ,
  242. .rej_perms = AV_PERM_PRESERVE },
  243. { .name = NULL}},
  244. .outputs = (const AVFilterPad[]) {{ .name = "default",
  245. .type = AVMEDIA_TYPE_VIDEO, },
  246. { .name = NULL}},
  247. };