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.

66 lines
2.4KB

  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 void start_frame(AVFilterLink *inlink, AVFilterBufferRef *picref)
  26. {
  27. avfilter_start_frame(inlink->dst->outputs[0],
  28. avfilter_ref_buffer(picref, ~AV_PERM_WRITE));
  29. avfilter_start_frame(inlink->dst->outputs[1],
  30. avfilter_ref_buffer(picref, ~AV_PERM_WRITE));
  31. }
  32. static void end_frame(AVFilterLink *inlink)
  33. {
  34. avfilter_end_frame(inlink->dst->outputs[0]);
  35. avfilter_end_frame(inlink->dst->outputs[1]);
  36. avfilter_unref_buffer(inlink->cur_buf);
  37. }
  38. static void draw_slice(AVFilterLink *inlink, int y, int h, int slice_dir)
  39. {
  40. avfilter_draw_slice(inlink->dst->outputs[0], y, h, slice_dir);
  41. avfilter_draw_slice(inlink->dst->outputs[1], y, h, slice_dir);
  42. }
  43. AVFilter avfilter_vf_split = {
  44. .name = "split",
  45. .inputs = (AVFilterPad[]) {{ .name = "default",
  46. .type = AVMEDIA_TYPE_VIDEO,
  47. .get_video_buffer= avfilter_null_get_video_buffer,
  48. .start_frame = start_frame,
  49. .draw_slice = draw_slice,
  50. .end_frame = end_frame, },
  51. { .name = NULL}},
  52. .outputs = (AVFilterPad[]) {{ .name = "default",
  53. .type = AVMEDIA_TYPE_VIDEO, },
  54. { .name = "default2",
  55. .type = AVMEDIA_TYPE_VIDEO, },
  56. { .name = NULL}},
  57. };