settb.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /*
  2. * Copyright (c) 2010 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
  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 "audio.h"
  33. #include "avfilter.h"
  34. #include "internal.h"
  35. #include "video.h"
  36. static const char *const var_names[] = {
  37. "AVTB", /* default timebase 1/AV_TIME_BASE */
  38. "intb", /* input timebase */
  39. "sr", /* sample rate */
  40. NULL
  41. };
  42. enum var_name {
  43. VAR_AVTB,
  44. VAR_INTB,
  45. VAR_SR,
  46. VAR_VARS_NB
  47. };
  48. typedef struct SetTBContext {
  49. const AVClass *class;
  50. char *tb_expr;
  51. double var_values[VAR_VARS_NB];
  52. } SetTBContext;
  53. #define OFFSET(x) offsetof(SetTBContext, x)
  54. #define DEFINE_OPTIONS(filt_name, filt_type) \
  55. static const AVOption filt_name##_options[] = { \
  56. { "expr", "set expression determining the output timebase", OFFSET(tb_expr), AV_OPT_TYPE_STRING, {.str="intb"}, \
  57. .flags=AV_OPT_FLAG_##filt_type##_PARAM|AV_OPT_FLAG_FILTERING_PARAM }, \
  58. { "tb", "set expression determining the output timebase", OFFSET(tb_expr), AV_OPT_TYPE_STRING, {.str="intb"}, \
  59. .flags=AV_OPT_FLAG_##filt_type##_PARAM|AV_OPT_FLAG_FILTERING_PARAM }, \
  60. { NULL } \
  61. }
  62. static int config_output_props(AVFilterLink *outlink)
  63. {
  64. AVFilterContext *ctx = outlink->src;
  65. SetTBContext *settb = ctx->priv;
  66. AVFilterLink *inlink = ctx->inputs[0];
  67. AVRational time_base;
  68. int ret;
  69. double res;
  70. settb->var_values[VAR_AVTB] = av_q2d(AV_TIME_BASE_Q);
  71. settb->var_values[VAR_INTB] = av_q2d(inlink->time_base);
  72. settb->var_values[VAR_SR] = inlink->sample_rate;
  73. outlink->w = inlink->w;
  74. outlink->h = inlink->h;
  75. if ((ret = av_expr_parse_and_eval(&res, settb->tb_expr, var_names, settb->var_values,
  76. NULL, NULL, NULL, NULL, NULL, 0, NULL)) < 0) {
  77. av_log(ctx, AV_LOG_ERROR, "Invalid expression '%s' for timebase.\n", settb->tb_expr);
  78. return ret;
  79. }
  80. time_base = av_d2q(res, INT_MAX);
  81. if (time_base.num <= 0 || time_base.den <= 0) {
  82. av_log(ctx, AV_LOG_ERROR,
  83. "Invalid non-positive values for the timebase num:%d or den:%d.\n",
  84. time_base.num, time_base.den);
  85. return AVERROR(EINVAL);
  86. }
  87. outlink->time_base = time_base;
  88. av_log(outlink->src, AV_LOG_VERBOSE, "tb:%d/%d -> tb:%d/%d\n",
  89. inlink ->time_base.num, inlink ->time_base.den,
  90. outlink->time_base.num, outlink->time_base.den);
  91. return 0;
  92. }
  93. static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
  94. {
  95. AVFilterContext *ctx = inlink->dst;
  96. AVFilterLink *outlink = ctx->outputs[0];
  97. if (av_cmp_q(inlink->time_base, outlink->time_base)) {
  98. int64_t orig_pts = frame->pts;
  99. frame->pts = av_rescale_q(frame->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, orig_pts,
  102. outlink->time_base.num, outlink->time_base.den, frame->pts);
  103. }
  104. return ff_filter_frame(outlink, frame);
  105. }
  106. #if CONFIG_SETTB_FILTER
  107. DEFINE_OPTIONS(settb, VIDEO);
  108. AVFILTER_DEFINE_CLASS(settb);
  109. static const AVFilterPad avfilter_vf_settb_inputs[] = {
  110. {
  111. .name = "default",
  112. .type = AVMEDIA_TYPE_VIDEO,
  113. .filter_frame = filter_frame,
  114. },
  115. { NULL }
  116. };
  117. static const AVFilterPad avfilter_vf_settb_outputs[] = {
  118. {
  119. .name = "default",
  120. .type = AVMEDIA_TYPE_VIDEO,
  121. .config_props = config_output_props,
  122. },
  123. { NULL }
  124. };
  125. AVFilter ff_vf_settb = {
  126. .name = "settb",
  127. .description = NULL_IF_CONFIG_SMALL("Set timebase for the video output link."),
  128. .priv_size = sizeof(SetTBContext),
  129. .priv_class = &settb_class,
  130. .inputs = avfilter_vf_settb_inputs,
  131. .outputs = avfilter_vf_settb_outputs,
  132. };
  133. #endif /* CONFIG_SETTB_FILTER */
  134. #if CONFIG_ASETTB_FILTER
  135. DEFINE_OPTIONS(asettb, AUDIO);
  136. AVFILTER_DEFINE_CLASS(asettb);
  137. static const AVFilterPad avfilter_af_asettb_inputs[] = {
  138. {
  139. .name = "default",
  140. .type = AVMEDIA_TYPE_AUDIO,
  141. .filter_frame = filter_frame,
  142. },
  143. { NULL }
  144. };
  145. static const AVFilterPad avfilter_af_asettb_outputs[] = {
  146. {
  147. .name = "default",
  148. .type = AVMEDIA_TYPE_AUDIO,
  149. .config_props = config_output_props,
  150. },
  151. { NULL }
  152. };
  153. AVFilter ff_af_asettb = {
  154. .name = "asettb",
  155. .description = NULL_IF_CONFIG_SMALL("Set timebase for the audio output link."),
  156. .priv_size = sizeof(SetTBContext),
  157. .inputs = avfilter_af_asettb_inputs,
  158. .outputs = avfilter_af_asettb_outputs,
  159. .priv_class = &asettb_class,
  160. };
  161. #endif /* CONFIG_ASETTB_FILTER */