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.

162 lines
4.6KB

  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 <inttypes.h>
  25. #include <stdio.h>
  26. #include "libavutil/avstring.h"
  27. #include "libavutil/eval.h"
  28. #include "libavutil/internal.h"
  29. #include "libavutil/mathematics.h"
  30. #include "libavutil/opt.h"
  31. #include "libavutil/rational.h"
  32. #include "avfilter.h"
  33. #include "internal.h"
  34. #include "video.h"
  35. static const char *const var_names[] = {
  36. "E",
  37. "PHI",
  38. "PI",
  39. "AVTB", /* default timebase 1/AV_TIME_BASE */
  40. "intb", /* input timebase */
  41. NULL
  42. };
  43. enum var_name {
  44. VAR_E,
  45. VAR_PHI,
  46. VAR_PI,
  47. VAR_AVTB,
  48. VAR_INTB,
  49. VAR_VARS_NB
  50. };
  51. typedef struct {
  52. const AVClass *class;
  53. char *tb_expr;
  54. double var_values[VAR_VARS_NB];
  55. } SetTBContext;
  56. static int config_output_props(AVFilterLink *outlink)
  57. {
  58. AVFilterContext *ctx = outlink->src;
  59. SetTBContext *settb = ctx->priv;
  60. AVFilterLink *inlink = ctx->inputs[0];
  61. AVRational time_base;
  62. int ret;
  63. double res;
  64. settb->var_values[VAR_E] = M_E;
  65. settb->var_values[VAR_PHI] = M_PHI;
  66. settb->var_values[VAR_PI] = M_PI;
  67. settb->var_values[VAR_AVTB] = av_q2d(AV_TIME_BASE_Q);
  68. settb->var_values[VAR_INTB] = av_q2d(inlink->time_base);
  69. outlink->w = inlink->w;
  70. outlink->h = inlink->h;
  71. if ((ret = av_expr_parse_and_eval(&res, settb->tb_expr, var_names, settb->var_values,
  72. NULL, NULL, NULL, NULL, NULL, 0, NULL)) < 0) {
  73. av_log(ctx, AV_LOG_ERROR, "Invalid expression '%s' for timebase.\n", settb->tb_expr);
  74. return ret;
  75. }
  76. time_base = av_d2q(res, INT_MAX);
  77. if (time_base.num <= 0 || time_base.den <= 0) {
  78. av_log(ctx, AV_LOG_ERROR,
  79. "Invalid non-positive values for the timebase num:%d or den:%d.\n",
  80. time_base.num, time_base.den);
  81. return AVERROR(EINVAL);
  82. }
  83. outlink->time_base = time_base;
  84. av_log(outlink->src, AV_LOG_VERBOSE, "tb:%d/%d -> tb:%d/%d\n",
  85. inlink ->time_base.num, inlink ->time_base.den,
  86. outlink->time_base.num, outlink->time_base.den);
  87. return 0;
  88. }
  89. static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
  90. {
  91. AVFilterContext *ctx = inlink->dst;
  92. AVFilterLink *outlink = ctx->outputs[0];
  93. if (av_cmp_q(inlink->time_base, outlink->time_base)) {
  94. int64_t orig_pts = frame->pts;
  95. frame->pts = av_rescale_q(frame->pts, inlink->time_base, outlink->time_base);
  96. av_log(ctx, AV_LOG_DEBUG, "tb:%d/%d pts:%"PRId64" -> tb:%d/%d pts:%"PRId64"\n",
  97. inlink ->time_base.num, inlink ->time_base.den, orig_pts,
  98. outlink->time_base.num, outlink->time_base.den, frame->pts);
  99. }
  100. return ff_filter_frame(outlink, frame);
  101. }
  102. #define OFFSET(x) offsetof(SetTBContext, x)
  103. #define FLAGS AV_OPT_FLAG_VIDEO_PARAM
  104. static const AVOption options[] = {
  105. { "expr", "Expression determining the output timebase", OFFSET(tb_expr), AV_OPT_TYPE_STRING, { .str = "intb" }, .flags = FLAGS },
  106. { NULL },
  107. };
  108. static const AVClass settb_class = {
  109. .class_name = "settb",
  110. .item_name = av_default_item_name,
  111. .option = options,
  112. .version = LIBAVUTIL_VERSION_INT,
  113. };
  114. static const AVFilterPad avfilter_vf_settb_inputs[] = {
  115. {
  116. .name = "default",
  117. .type = AVMEDIA_TYPE_VIDEO,
  118. .get_video_buffer = ff_null_get_video_buffer,
  119. .filter_frame = filter_frame,
  120. },
  121. { NULL }
  122. };
  123. static const AVFilterPad avfilter_vf_settb_outputs[] = {
  124. {
  125. .name = "default",
  126. .type = AVMEDIA_TYPE_VIDEO,
  127. .config_props = config_output_props,
  128. },
  129. { NULL }
  130. };
  131. AVFilter ff_vf_settb = {
  132. .name = "settb",
  133. .description = NULL_IF_CONFIG_SMALL("Set timebase for the output link."),
  134. .priv_size = sizeof(SetTBContext),
  135. .priv_class = &settb_class,
  136. .inputs = avfilter_vf_settb_inputs,
  137. .outputs = avfilter_vf_settb_outputs,
  138. };