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.

125 lines
3.6KB

  1. /*
  2. * Copyright (c) 2012 Stefano Sabatini
  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 framestep filter, inspired on libmpcodecs/vf_framestep.c by
  22. * Daniele Fornighieri <guru AT digitalfantasy it>.
  23. */
  24. #include "avfilter.h"
  25. #include "internal.h"
  26. #include "video.h"
  27. typedef struct {
  28. int frame_step, frame_count, frame_selected;
  29. } FrameStepContext;
  30. static av_cold int init(AVFilterContext *ctx, const char *args)
  31. {
  32. FrameStepContext *framestep = ctx->priv;
  33. char *tailptr;
  34. long int n = 1;
  35. if (args) {
  36. n = strtol(args, &tailptr, 10);
  37. if (*tailptr || n <= 0 || n >= INT_MAX) {
  38. av_log(ctx, AV_LOG_ERROR,
  39. "Invalid argument '%s', must be a positive integer <= INT_MAX\n", args);
  40. return AVERROR(EINVAL);
  41. }
  42. }
  43. framestep->frame_step = n;
  44. return 0;
  45. }
  46. static int config_output_props(AVFilterLink *outlink)
  47. {
  48. AVFilterContext *ctx = outlink->src;
  49. FrameStepContext *framestep = ctx->priv;
  50. AVFilterLink *inlink = ctx->inputs[0];
  51. outlink->frame_rate =
  52. av_div_q(inlink->frame_rate, (AVRational){framestep->frame_step, 1});
  53. av_log(ctx, AV_LOG_VERBOSE, "step:%d frame_rate:%d/%d(%f) -> frame_rate:%d/%d(%f)\n",
  54. framestep->frame_step,
  55. inlink->frame_rate.num, inlink->frame_rate.den, av_q2d(inlink->frame_rate),
  56. outlink->frame_rate.num, outlink->frame_rate.den, av_q2d(outlink->frame_rate));
  57. return 0;
  58. }
  59. static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *ref)
  60. {
  61. FrameStepContext *framestep = inlink->dst->priv;
  62. if (!(framestep->frame_count++ % framestep->frame_step)) {
  63. framestep->frame_selected = 1;
  64. return ff_filter_frame(inlink->dst->outputs[0], ref);
  65. } else {
  66. framestep->frame_selected = 0;
  67. avfilter_unref_buffer(ref);
  68. return 0;
  69. }
  70. }
  71. static int request_frame(AVFilterLink *outlink)
  72. {
  73. FrameStepContext *framestep = outlink->src->priv;
  74. AVFilterLink *inlink = outlink->src->inputs[0];
  75. int ret;
  76. framestep->frame_selected = 0;
  77. do {
  78. ret = ff_request_frame(inlink);
  79. } while (!framestep->frame_selected && ret >= 0);
  80. return ret;
  81. }
  82. static const AVFilterPad framestep_inputs[] = {
  83. {
  84. .name = "default",
  85. .type = AVMEDIA_TYPE_VIDEO,
  86. .get_video_buffer = ff_null_get_video_buffer,
  87. .filter_frame = filter_frame,
  88. },
  89. { NULL }
  90. };
  91. static const AVFilterPad framestep_outputs[] = {
  92. {
  93. .name = "default",
  94. .type = AVMEDIA_TYPE_VIDEO,
  95. .config_props = config_output_props,
  96. .request_frame = request_frame,
  97. },
  98. { NULL }
  99. };
  100. AVFilter avfilter_vf_framestep = {
  101. .name = "framestep",
  102. .description = NULL_IF_CONFIG_SMALL("Select one frame every N frames."),
  103. .init = init,
  104. .priv_size = sizeof(FrameStepContext),
  105. .inputs = framestep_inputs,
  106. .outputs = framestep_outputs,
  107. };