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.

116 lines
3.0KB

  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/common.h"
  21. #include "libavutil/opt.h"
  22. #include "internal.h"
  23. typedef struct VFRDETContext {
  24. const AVClass *class;
  25. int64_t prev_pts;
  26. int64_t delta;
  27. int64_t min_delta;
  28. int64_t max_delta;
  29. int64_t avg_delta;
  30. uint64_t vfr;
  31. uint64_t cfr;
  32. } VFRDETContext;
  33. static int filter_frame(AVFilterLink *inlink, AVFrame *in)
  34. {
  35. AVFilterContext *ctx = inlink->dst;
  36. VFRDETContext *s = ctx->priv;
  37. if (s->prev_pts != AV_NOPTS_VALUE) {
  38. int64_t delta = in->pts - s->prev_pts;
  39. if (s->delta == AV_NOPTS_VALUE) {
  40. s->delta = delta;
  41. s->min_delta = delta;
  42. s->max_delta = delta;
  43. }
  44. if (s->delta != delta) {
  45. s->vfr++;
  46. s->delta = delta;
  47. s->min_delta = FFMIN(delta, s->min_delta);
  48. s->max_delta = FFMAX(delta, s->max_delta);
  49. s->avg_delta += delta;
  50. } else {
  51. s->cfr++;
  52. }
  53. }
  54. s->prev_pts = in->pts;
  55. return ff_filter_frame(ctx->outputs[0], in);
  56. }
  57. static av_cold int init(AVFilterContext *ctx)
  58. {
  59. VFRDETContext *s = ctx->priv;
  60. s->prev_pts = AV_NOPTS_VALUE;
  61. s->delta = AV_NOPTS_VALUE;
  62. s->min_delta = INT64_MAX;
  63. s->max_delta = INT64_MIN;
  64. return 0;
  65. }
  66. static av_cold void uninit(AVFilterContext *ctx)
  67. {
  68. VFRDETContext *s = ctx->priv;
  69. av_log(ctx, AV_LOG_INFO, "VFR:%f (%"PRIu64"/%"PRIu64")", s->vfr / (float)(s->vfr + s->cfr), s->vfr, s->cfr);
  70. if (s->vfr)
  71. av_log(ctx, AV_LOG_INFO, " min: %"PRId64" max: %"PRId64" avg: %"PRId64, s->min_delta, s->max_delta, s->avg_delta / s->vfr);
  72. av_log(ctx, AV_LOG_INFO, "\n");
  73. }
  74. static const AVFilterPad vfrdet_inputs[] = {
  75. {
  76. .name = "default",
  77. .type = AVMEDIA_TYPE_VIDEO,
  78. .filter_frame = filter_frame,
  79. },
  80. { NULL }
  81. };
  82. static const AVFilterPad vfrdet_outputs[] = {
  83. {
  84. .name = "default",
  85. .type = AVMEDIA_TYPE_VIDEO,
  86. },
  87. { NULL }
  88. };
  89. AVFilter ff_vf_vfrdet = {
  90. .name = "vfrdet",
  91. .description = NULL_IF_CONFIG_SMALL("Variable frame rate detect filter."),
  92. .priv_size = sizeof(VFRDETContext),
  93. .init = init,
  94. .uninit = uninit,
  95. .inputs = vfrdet_inputs,
  96. .outputs = vfrdet_outputs,
  97. };