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.

225 lines
6.6KB

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