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.

138 lines
3.5KB

  1. /*
  2. * This file is part of Libav.
  3. *
  4. * Libav is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * Libav is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with Libav; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. /**
  19. * @file
  20. * null video source
  21. */
  22. #include <stdio.h>
  23. #include "libavutil/avstring.h"
  24. #include "libavutil/eval.h"
  25. #include "libavutil/internal.h"
  26. #include "libavutil/mathematics.h"
  27. #include "libavutil/parseutils.h"
  28. #include "avfilter.h"
  29. #include "formats.h"
  30. #include "internal.h"
  31. static const char *const var_names[] = {
  32. "E",
  33. "PHI",
  34. "PI",
  35. "AVTB", /* default timebase 1/AV_TIME_BASE */
  36. NULL
  37. };
  38. enum var_name {
  39. VAR_E,
  40. VAR_PHI,
  41. VAR_PI,
  42. VAR_AVTB,
  43. VAR_VARS_NB
  44. };
  45. typedef struct {
  46. int w, h;
  47. char tb_expr[256];
  48. double var_values[VAR_VARS_NB];
  49. } NullContext;
  50. static int init(AVFilterContext *ctx, const char *args)
  51. {
  52. NullContext *priv = ctx->priv;
  53. priv->w = 352;
  54. priv->h = 288;
  55. av_strlcpy(priv->tb_expr, "AVTB", sizeof(priv->tb_expr));
  56. if (args)
  57. sscanf(args, "%d:%d:%255[^:]", &priv->w, &priv->h, priv->tb_expr);
  58. if (priv->w <= 0 || priv->h <= 0) {
  59. av_log(ctx, AV_LOG_ERROR, "Non-positive size values are not acceptable.\n");
  60. return AVERROR(EINVAL);
  61. }
  62. return 0;
  63. }
  64. static int config_props(AVFilterLink *outlink)
  65. {
  66. AVFilterContext *ctx = outlink->src;
  67. NullContext *priv = ctx->priv;
  68. AVRational tb;
  69. int ret;
  70. double res;
  71. priv->var_values[VAR_E] = M_E;
  72. priv->var_values[VAR_PHI] = M_PHI;
  73. priv->var_values[VAR_PI] = M_PI;
  74. priv->var_values[VAR_AVTB] = av_q2d(AV_TIME_BASE_Q);
  75. if ((ret = av_expr_parse_and_eval(&res, priv->tb_expr, var_names, priv->var_values,
  76. NULL, NULL, NULL, NULL, NULL, 0, NULL)) < 0) {
  77. av_log(ctx, AV_LOG_ERROR, "Invalid expression '%s' for timebase.\n", priv->tb_expr);
  78. return ret;
  79. }
  80. tb = av_d2q(res, INT_MAX);
  81. if (tb.num <= 0 || tb.den <= 0) {
  82. av_log(ctx, AV_LOG_ERROR,
  83. "Invalid non-positive value for the timebase %d/%d.\n",
  84. tb.num, tb.den);
  85. return AVERROR(EINVAL);
  86. }
  87. outlink->w = priv->w;
  88. outlink->h = priv->h;
  89. outlink->time_base = tb;
  90. av_log(outlink->src, AV_LOG_VERBOSE, "w:%d h:%d tb:%d/%d\n", priv->w, priv->h,
  91. tb.num, tb.den);
  92. return 0;
  93. }
  94. static int request_frame(AVFilterLink *link)
  95. {
  96. return -1;
  97. }
  98. static const AVFilterPad avfilter_vsrc_nullsrc_outputs[] = {
  99. {
  100. .name = "default",
  101. .type = AVMEDIA_TYPE_VIDEO,
  102. .config_props = config_props,
  103. .request_frame = request_frame,
  104. },
  105. { NULL }
  106. };
  107. AVFilter avfilter_vsrc_nullsrc = {
  108. .name = "nullsrc",
  109. .description = NULL_IF_CONFIG_SMALL("Null video source, never return images."),
  110. .init = init,
  111. .priv_size = sizeof(NullContext),
  112. .inputs = NULL,
  113. .outputs = avfilter_vsrc_nullsrc_outputs,
  114. };