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.

144 lines
4.5KB

  1. /*
  2. * Copyright (c) 2010 Stefano Sabatini
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav 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. * Libav 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 Libav; 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. * Set timebase for the output link.
  23. */
  24. #include "libavutil/avstring.h"
  25. #include "libavutil/eval.h"
  26. #include "libavutil/mathematics.h"
  27. #include "libavutil/rational.h"
  28. #include "avfilter.h"
  29. #include "internal.h"
  30. #include "video.h"
  31. static const char *const var_names[] = {
  32. "E",
  33. "PHI",
  34. "PI",
  35. "AVTB", /* default timebase 1/AV_TIME_BASE */
  36. "intb", /* input timebase */
  37. NULL
  38. };
  39. enum var_name {
  40. VAR_E,
  41. VAR_PHI,
  42. VAR_PI,
  43. VAR_AVTB,
  44. VAR_INTB,
  45. VAR_VARS_NB
  46. };
  47. typedef struct {
  48. char tb_expr[256];
  49. double var_values[VAR_VARS_NB];
  50. } SetTBContext;
  51. static av_cold int init(AVFilterContext *ctx, const char *args)
  52. {
  53. SetTBContext *settb = ctx->priv;
  54. av_strlcpy(settb->tb_expr, "intb", sizeof(settb->tb_expr));
  55. if (args)
  56. sscanf(args, "%255[^:]", settb->tb_expr);
  57. return 0;
  58. }
  59. static int config_output_props(AVFilterLink *outlink)
  60. {
  61. AVFilterContext *ctx = outlink->src;
  62. SetTBContext *settb = ctx->priv;
  63. AVFilterLink *inlink = ctx->inputs[0];
  64. AVRational time_base;
  65. int ret;
  66. double res;
  67. settb->var_values[VAR_E] = M_E;
  68. settb->var_values[VAR_PHI] = M_PHI;
  69. settb->var_values[VAR_PI] = M_PI;
  70. settb->var_values[VAR_AVTB] = av_q2d(AV_TIME_BASE_Q);
  71. settb->var_values[VAR_INTB] = av_q2d(inlink->time_base);
  72. outlink->w = inlink->w;
  73. outlink->h = inlink->h;
  74. if ((ret = av_expr_parse_and_eval(&res, settb->tb_expr, var_names, settb->var_values,
  75. NULL, NULL, NULL, NULL, NULL, 0, NULL)) < 0) {
  76. av_log(ctx, AV_LOG_ERROR, "Invalid expression '%s' for timebase.\n", settb->tb_expr);
  77. return ret;
  78. }
  79. time_base = av_d2q(res, INT_MAX);
  80. if (time_base.num <= 0 || time_base.den <= 0) {
  81. av_log(ctx, AV_LOG_ERROR,
  82. "Invalid non-positive values for the timebase num:%d or den:%d.\n",
  83. time_base.num, time_base.den);
  84. return AVERROR(EINVAL);
  85. }
  86. outlink->time_base = time_base;
  87. av_log(outlink->src, AV_LOG_VERBOSE, "tb:%d/%d -> tb:%d/%d\n",
  88. inlink ->time_base.num, inlink ->time_base.den,
  89. outlink->time_base.num, outlink->time_base.den);
  90. return 0;
  91. }
  92. static void start_frame(AVFilterLink *inlink, AVFilterBufferRef *picref)
  93. {
  94. AVFilterContext *ctx = inlink->dst;
  95. AVFilterLink *outlink = ctx->outputs[0];
  96. AVFilterBufferRef *picref2 = picref;
  97. if (av_cmp_q(inlink->time_base, outlink->time_base)) {
  98. picref2 = avfilter_ref_buffer(picref, ~0);
  99. picref2->pts = av_rescale_q(picref->pts, inlink->time_base, outlink->time_base);
  100. av_log(ctx, AV_LOG_DEBUG, "tb:%d/%d pts:%"PRId64" -> tb:%d/%d pts:%"PRId64"\n",
  101. inlink ->time_base.num, inlink ->time_base.den, picref ->pts,
  102. outlink->time_base.num, outlink->time_base.den, picref2->pts);
  103. avfilter_unref_buffer(picref);
  104. }
  105. ff_start_frame(outlink, picref2);
  106. }
  107. AVFilter avfilter_vf_settb = {
  108. .name = "settb",
  109. .description = NULL_IF_CONFIG_SMALL("Set timebase for the output link."),
  110. .init = init,
  111. .priv_size = sizeof(SetTBContext),
  112. .inputs = (AVFilterPad[]) {{ .name = "default",
  113. .type = AVMEDIA_TYPE_VIDEO,
  114. .get_video_buffer = ff_null_get_video_buffer,
  115. .start_frame = start_frame,
  116. .end_frame = ff_null_end_frame },
  117. { .name = NULL }},
  118. .outputs = (AVFilterPad[]) {{ .name = "default",
  119. .type = AVMEDIA_TYPE_VIDEO,
  120. .config_props = config_output_props, },
  121. { .name = NULL}},
  122. };