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.

109 lines
3.1KB

  1. /*
  2. * Copyright (c) 2007 Bobby Bingham
  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. /**
  21. * @file
  22. * Video splitter
  23. */
  24. #include "avfilter.h"
  25. static int split_init(AVFilterContext *ctx, const char *args, void *opaque)
  26. {
  27. int i, nb_outputs = 2;
  28. if (args) {
  29. nb_outputs = strtol(args, NULL, 0);
  30. if (nb_outputs <= 0) {
  31. av_log(ctx, AV_LOG_ERROR, "Invalid number of outputs specified: %d.\n",
  32. nb_outputs);
  33. return AVERROR(EINVAL);
  34. }
  35. }
  36. for (i = 0; i < nb_outputs; i++) {
  37. char name[32];
  38. AVFilterPad pad = { 0 };
  39. snprintf(name, sizeof(name), "output%d", i);
  40. pad.type = AVMEDIA_TYPE_VIDEO;
  41. pad.name = av_strdup(name);
  42. avfilter_insert_outpad(ctx, i, &pad);
  43. }
  44. return 0;
  45. }
  46. static void split_uninit(AVFilterContext *ctx)
  47. {
  48. int i;
  49. for (i = 0; i < ctx->output_count; i++)
  50. av_freep(&ctx->output_pads[i].name);
  51. }
  52. static void start_frame(AVFilterLink *inlink, AVFilterBufferRef *picref)
  53. {
  54. AVFilterContext *ctx = inlink->dst;
  55. int i;
  56. for (i = 0; i < ctx->output_count; i++)
  57. avfilter_start_frame(ctx->outputs[i],
  58. avfilter_ref_buffer(picref, ~AV_PERM_WRITE));
  59. }
  60. static void draw_slice(AVFilterLink *inlink, int y, int h, int slice_dir)
  61. {
  62. AVFilterContext *ctx = inlink->dst;
  63. int i;
  64. for (i = 0; i < ctx->output_count; i++)
  65. avfilter_draw_slice(ctx->outputs[i], y, h, slice_dir);
  66. }
  67. static void end_frame(AVFilterLink *inlink)
  68. {
  69. AVFilterContext *ctx = inlink->dst;
  70. int i;
  71. for (i = 0; i < ctx->output_count; i++)
  72. avfilter_end_frame(ctx->outputs[i]);
  73. avfilter_unref_buffer(inlink->cur_buf);
  74. }
  75. AVFilter avfilter_vf_split = {
  76. .name = "split",
  77. .description = NULL_IF_CONFIG_SMALL("Pass on the input to two outputs."),
  78. .init = split_init,
  79. .uninit = split_uninit,
  80. .inputs = (const AVFilterPad[]) {{ .name = "default",
  81. .type = AVMEDIA_TYPE_VIDEO,
  82. .get_video_buffer= avfilter_null_get_video_buffer,
  83. .start_frame = start_frame,
  84. .draw_slice = draw_slice,
  85. .end_frame = end_frame, },
  86. { .name = NULL}},
  87. .outputs = (AVFilterPad[]) {{ .name = NULL}},
  88. };