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.

284 lines
8.2KB

  1. /*
  2. * Copyright (c) 2017 Paul B Mahol
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include "libavutil/avstring.h"
  21. #include "libavutil/imgutils.h"
  22. #include "libavutil/intreadwrite.h"
  23. #include "libavutil/opt.h"
  24. #include "libavutil/pixdesc.h"
  25. #include "avfilter.h"
  26. #include "formats.h"
  27. #include "internal.h"
  28. #include "framesync.h"
  29. #include "video.h"
  30. typedef struct MixContext {
  31. const AVClass *class;
  32. const AVPixFmtDescriptor *desc;
  33. char *weights_str;
  34. int nb_inputs;
  35. int duration;
  36. float *weights;
  37. float wfactor;
  38. int depth;
  39. int nb_planes;
  40. int linesize[4];
  41. int height[4];
  42. AVFrame **frames;
  43. FFFrameSync fs;
  44. } MixContext;
  45. static int query_formats(AVFilterContext *ctx)
  46. {
  47. AVFilterFormats *pix_fmts = NULL;
  48. int fmt, ret;
  49. for (fmt = 0; av_pix_fmt_desc_get(fmt); fmt++) {
  50. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(fmt);
  51. if (!(desc->flags & AV_PIX_FMT_FLAG_PAL ||
  52. desc->flags & AV_PIX_FMT_FLAG_HWACCEL ||
  53. desc->flags & AV_PIX_FMT_FLAG_BITSTREAM) &&
  54. (ret = ff_add_format(&pix_fmts, fmt)) < 0)
  55. return ret;
  56. }
  57. return ff_set_common_formats(ctx, pix_fmts);
  58. }
  59. static av_cold int init(AVFilterContext *ctx)
  60. {
  61. MixContext *s = ctx->priv;
  62. char *p, *arg, *saveptr = NULL;
  63. int i, ret;
  64. s->frames = av_calloc(s->nb_inputs, sizeof(*s->frames));
  65. if (!s->frames)
  66. return AVERROR(ENOMEM);
  67. s->weights = av_calloc(s->nb_inputs, sizeof(*s->weights));
  68. if (!s->weights)
  69. return AVERROR(ENOMEM);
  70. for (i = 0; i < s->nb_inputs; i++) {
  71. AVFilterPad pad = { 0 };
  72. pad.type = AVMEDIA_TYPE_VIDEO;
  73. pad.name = av_asprintf("input%d", i);
  74. if (!pad.name)
  75. return AVERROR(ENOMEM);
  76. if ((ret = ff_insert_inpad(ctx, i, &pad)) < 0) {
  77. av_freep(&pad.name);
  78. return ret;
  79. }
  80. }
  81. p = s->weights_str;
  82. for (i = 0; i < s->nb_inputs; i++) {
  83. if (!(arg = av_strtok(p, " ", &saveptr)))
  84. break;
  85. p = NULL;
  86. sscanf(arg, "%f", &s->weights[i]);
  87. s->wfactor += s->weights[i];
  88. }
  89. s->wfactor = 1 / s->wfactor;
  90. return 0;
  91. }
  92. static int process_frame(FFFrameSync *fs)
  93. {
  94. AVFilterContext *ctx = fs->parent;
  95. AVFilterLink *outlink = ctx->outputs[0];
  96. MixContext *s = fs->opaque;
  97. AVFrame **in = s->frames;
  98. AVFrame *out;
  99. int i, p, ret, x, y;
  100. for (i = 0; i < s->nb_inputs; i++) {
  101. if ((ret = ff_framesync_get_frame(&s->fs, i, &in[i], 0)) < 0)
  102. return ret;
  103. }
  104. out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
  105. if (!out)
  106. return AVERROR(ENOMEM);
  107. out->pts = av_rescale_q(s->fs.pts, s->fs.time_base, outlink->time_base);
  108. if (s->depth <= 8) {
  109. for (p = 0; p < s->nb_planes; p++) {
  110. uint8_t *dst = out->data[p];
  111. for (y = 0; y < s->height[p]; y++) {
  112. for (x = 0; x < s->linesize[p]; x++) {
  113. int val = 0;
  114. for (i = 0; i < s->nb_inputs; i++) {
  115. uint8_t src = in[i]->data[p][y * s->linesize[p] + x];
  116. val += src * s->weights[i];
  117. }
  118. dst[x] = val * s->wfactor;
  119. }
  120. dst += out->linesize[p];
  121. }
  122. }
  123. } else {
  124. for (p = 0; p < s->nb_planes; p++) {
  125. uint16_t *dst = (uint16_t *)out->data[p];
  126. for (y = 0; y < s->height[p]; y++) {
  127. for (x = 0; x < s->linesize[p]; x++) {
  128. int val = 0;
  129. for (i = 0; i < s->nb_inputs; i++) {
  130. uint16_t src = AV_RN16(in[i]->data[p] + y * s->linesize[p] + x * 2);
  131. val += src * s->weights[i];
  132. }
  133. dst[x] = val * s->wfactor;
  134. }
  135. dst += out->linesize[p] / 2;
  136. }
  137. }
  138. }
  139. return ff_filter_frame(outlink, out);
  140. }
  141. static int config_output(AVFilterLink *outlink)
  142. {
  143. AVFilterContext *ctx = outlink->src;
  144. MixContext *s = ctx->priv;
  145. AVRational time_base = ctx->inputs[0]->time_base;
  146. AVRational frame_rate = ctx->inputs[0]->frame_rate;
  147. AVFilterLink *inlink = ctx->inputs[0];
  148. int height = ctx->inputs[0]->h;
  149. int width = ctx->inputs[0]->w;
  150. FFFrameSyncIn *in;
  151. int i, ret;
  152. for (i = 1; i < s->nb_inputs; i++) {
  153. if (ctx->inputs[i]->h != height || ctx->inputs[i]->w != width) {
  154. av_log(ctx, AV_LOG_ERROR, "Input %d size (%dx%d) does not match input %d size (%dx%d).\n", i, ctx->inputs[i]->w, ctx->inputs[i]->h, 0, width, height);
  155. return AVERROR(EINVAL);
  156. }
  157. }
  158. s->desc = av_pix_fmt_desc_get(outlink->format);
  159. if (!s->desc)
  160. return AVERROR_BUG;
  161. s->nb_planes = av_pix_fmt_count_planes(outlink->format);
  162. s->depth = s->desc->comp[0].depth;
  163. outlink->w = width;
  164. outlink->h = height;
  165. outlink->time_base = time_base;
  166. outlink->frame_rate = frame_rate;
  167. if ((ret = ff_framesync_init(&s->fs, ctx, s->nb_inputs)) < 0)
  168. return ret;
  169. in = s->fs.in;
  170. s->fs.opaque = s;
  171. s->fs.on_event = process_frame;
  172. if ((ret = av_image_fill_linesizes(s->linesize, inlink->format, inlink->w)) < 0)
  173. return ret;
  174. s->height[1] = s->height[2] = AV_CEIL_RSHIFT(inlink->h, s->desc->log2_chroma_h);
  175. s->height[0] = s->height[3] = inlink->h;
  176. for (i = 0; i < s->nb_inputs; i++) {
  177. AVFilterLink *inlink = ctx->inputs[i];
  178. in[i].time_base = inlink->time_base;
  179. in[i].sync = 1;
  180. in[i].before = EXT_STOP;
  181. in[i].after = (s->duration == 1 || (s->duration == 2 && i == 0)) ? EXT_STOP : EXT_INFINITY;
  182. }
  183. return ff_framesync_configure(&s->fs);
  184. }
  185. static av_cold void uninit(AVFilterContext *ctx)
  186. {
  187. MixContext *s = ctx->priv;
  188. int i;
  189. ff_framesync_uninit(&s->fs);
  190. av_freep(&s->frames);
  191. av_freep(&s->weights);
  192. for (i = 0; i < ctx->nb_inputs; i++)
  193. av_freep(&ctx->input_pads[i].name);
  194. }
  195. static int activate(AVFilterContext *ctx)
  196. {
  197. MixContext *s = ctx->priv;
  198. return ff_framesync_activate(&s->fs);
  199. }
  200. #define OFFSET(x) offsetof(MixContext, x)
  201. #define FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM
  202. static const AVOption mix_options[] = {
  203. { "inputs", "set number of inputs", OFFSET(nb_inputs), AV_OPT_TYPE_INT, {.i64=2}, 2, INT_MAX, .flags = FLAGS },
  204. { "weights", "set weight for each input", OFFSET(weights_str), AV_OPT_TYPE_STRING, {.str="1 1"}, 0, 0, .flags = FLAGS },
  205. { "duration", "how to determine end of stream", OFFSET(duration), AV_OPT_TYPE_INT, {.i64=0}, 0, 2, .flags = FLAGS, "duration" },
  206. { "longest", "Duration of longest input", 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "duration" },
  207. { "shortest", "Duration of shortest input", 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "duration" },
  208. { "first", "Duration of first input", 0, AV_OPT_TYPE_CONST, {.i64=2}, 0, 0, FLAGS, "duration" },
  209. { NULL },
  210. };
  211. static const AVFilterPad outputs[] = {
  212. {
  213. .name = "default",
  214. .type = AVMEDIA_TYPE_VIDEO,
  215. .config_props = config_output,
  216. },
  217. { NULL }
  218. };
  219. AVFILTER_DEFINE_CLASS(mix);
  220. AVFilter ff_vf_mix = {
  221. .name = "mix",
  222. .description = NULL_IF_CONFIG_SMALL("Mix video inputs."),
  223. .priv_size = sizeof(MixContext),
  224. .priv_class = &mix_class,
  225. .query_formats = query_formats,
  226. .outputs = outputs,
  227. .init = init,
  228. .uninit = uninit,
  229. .activate = activate,
  230. .flags = AVFILTER_FLAG_DYNAMIC_INPUTS,
  231. };