settb.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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 "audio.h"
  33. #include "avfilter.h"
  34. #include "internal.h"
  35. #include "video.h"
  36. static const char *const var_names[] = {
  37. "E",
  38. "PHI",
  39. "PI",
  40. "AVTB", /* default timebase 1/AV_TIME_BASE */
  41. "intb", /* input timebase */
  42. "sr", /* sample rate */
  43. NULL
  44. };
  45. enum var_name {
  46. VAR_E,
  47. VAR_PHI,
  48. VAR_PI,
  49. VAR_AVTB,
  50. VAR_INTB,
  51. VAR_SR,
  52. VAR_VARS_NB
  53. };
  54. typedef struct SetTBContext {
  55. const AVClass *class;
  56. char *tb_expr;
  57. double var_values[VAR_VARS_NB];
  58. } SetTBContext;
  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. 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. #define OFFSET(x) offsetof(SetTBContext, x)
  107. #define FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_AUDIO_PARAM
  108. static const AVOption options[] = {
  109. { "expr", "Expression determining the output timebase", OFFSET(tb_expr), AV_OPT_TYPE_STRING, { .str = "intb" }, .flags = FLAGS },
  110. { NULL },
  111. };
  112. #if CONFIG_SETTB_FILTER
  113. static const AVClass settb_class = {
  114. .class_name = "settb",
  115. .item_name = av_default_item_name,
  116. .option = options,
  117. .version = LIBAVUTIL_VERSION_INT,
  118. };
  119. static const AVFilterPad avfilter_vf_settb_inputs[] = {
  120. {
  121. .name = "default",
  122. .type = AVMEDIA_TYPE_VIDEO,
  123. .get_video_buffer = ff_null_get_video_buffer,
  124. .filter_frame = filter_frame,
  125. },
  126. { NULL }
  127. };
  128. static const AVFilterPad avfilter_vf_settb_outputs[] = {
  129. {
  130. .name = "default",
  131. .type = AVMEDIA_TYPE_VIDEO,
  132. .config_props = config_output_props,
  133. },
  134. { NULL }
  135. };
  136. AVFilter ff_vf_settb = {
  137. .name = "settb",
  138. .description = NULL_IF_CONFIG_SMALL("Set timebase for the video output link."),
  139. .priv_size = sizeof(SetTBContext),
  140. .priv_class = &settb_class,
  141. .inputs = avfilter_vf_settb_inputs,
  142. .outputs = avfilter_vf_settb_outputs,
  143. };
  144. #endif /* CONFIG_SETTB_FILTER */
  145. #if CONFIG_ASETTB_FILTER
  146. static const AVClass asettb_class = {
  147. .class_name = "asettb",
  148. .item_name = av_default_item_name,
  149. .option = options,
  150. .version = LIBAVUTIL_VERSION_INT,
  151. };
  152. static const AVFilterPad avfilter_af_asettb_inputs[] = {
  153. {
  154. .name = "default",
  155. .type = AVMEDIA_TYPE_AUDIO,
  156. .get_audio_buffer = ff_null_get_audio_buffer,
  157. .filter_frame = filter_frame,
  158. },
  159. { NULL }
  160. };
  161. static const AVFilterPad avfilter_af_asettb_outputs[] = {
  162. {
  163. .name = "default",
  164. .type = AVMEDIA_TYPE_AUDIO,
  165. .config_props = config_output_props,
  166. },
  167. { NULL }
  168. };
  169. AVFilter ff_af_asettb = {
  170. .name = "asettb",
  171. .description = NULL_IF_CONFIG_SMALL("Set timebase for the audio output link."),
  172. .priv_size = sizeof(SetTBContext),
  173. .inputs = avfilter_af_asettb_inputs,
  174. .outputs = avfilter_af_asettb_outputs,
  175. .priv_class = &asettb_class,
  176. };
  177. #endif /* CONFIG_ASETTB_FILTER */