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.

226 lines
6.4KB

  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 "avfilter.h"
  33. #include "internal.h"
  34. #include "audio.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 {
  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. { "tb", "set timebase expression", OFFSET(tb_expr), AV_OPT_TYPE_STRING, {.str="intb"}, \
  57. .flags=AV_OPT_FLAG_##filt_type##_PARAM|AV_OPT_FLAG_FILTERING_PARAM }, \
  58. { NULL } \
  59. }
  60. static av_cold int init(AVFilterContext *ctx, const char *args, const AVClass *class)
  61. {
  62. SetTBContext *settb = ctx->priv;
  63. static const char *shorthand[] = { "tb", NULL };
  64. int ret;
  65. settb->class = class;
  66. av_opt_set_defaults(settb);
  67. if ((ret = av_opt_set_from_string(settb, args, shorthand, "=", ":")) < 0)
  68. return ret;
  69. return 0;
  70. }
  71. static av_cold void uninit(AVFilterContext *ctx)
  72. {
  73. SetTBContext *settb = ctx->priv;
  74. av_opt_free(settb);
  75. }
  76. static int config_output_props(AVFilterLink *outlink)
  77. {
  78. AVFilterContext *ctx = outlink->src;
  79. SetTBContext *settb = ctx->priv;
  80. AVFilterLink *inlink = ctx->inputs[0];
  81. AVRational time_base;
  82. int ret;
  83. double res;
  84. settb->var_values[VAR_AVTB] = av_q2d(AV_TIME_BASE_Q);
  85. settb->var_values[VAR_INTB] = av_q2d(inlink->time_base);
  86. settb->var_values[VAR_SR] = inlink->sample_rate;
  87. outlink->w = inlink->w;
  88. outlink->h = inlink->h;
  89. if ((ret = av_expr_parse_and_eval(&res, settb->tb_expr, var_names, settb->var_values,
  90. NULL, NULL, NULL, NULL, NULL, 0, NULL)) < 0) {
  91. av_log(ctx, AV_LOG_ERROR, "Invalid expression '%s' for timebase.\n", settb->tb_expr);
  92. return ret;
  93. }
  94. time_base = av_d2q(res, INT_MAX);
  95. if (time_base.num <= 0 || time_base.den <= 0) {
  96. av_log(ctx, AV_LOG_ERROR,
  97. "Invalid non-positive values for the timebase num:%d or den:%d.\n",
  98. time_base.num, time_base.den);
  99. return AVERROR(EINVAL);
  100. }
  101. outlink->time_base = time_base;
  102. av_log(outlink->src, AV_LOG_VERBOSE, "tb:%d/%d -> tb:%d/%d\n",
  103. inlink ->time_base.num, inlink ->time_base.den,
  104. outlink->time_base.num, outlink->time_base.den);
  105. return 0;
  106. }
  107. static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
  108. {
  109. AVFilterContext *ctx = inlink->dst;
  110. AVFilterLink *outlink = ctx->outputs[0];
  111. if (av_cmp_q(inlink->time_base, outlink->time_base)) {
  112. int64_t orig_pts = frame->pts;
  113. frame->pts = av_rescale_q(frame->pts, inlink->time_base, outlink->time_base);
  114. av_log(ctx, AV_LOG_DEBUG, "tb:%d/%d pts:%"PRId64" -> tb:%d/%d pts:%"PRId64"\n",
  115. inlink ->time_base.num, inlink ->time_base.den, orig_pts,
  116. outlink->time_base.num, outlink->time_base.den, frame->pts);
  117. }
  118. return ff_filter_frame(outlink, frame);
  119. }
  120. #if CONFIG_SETTB_FILTER
  121. DEFINE_OPTIONS(settb, VIDEO);
  122. AVFILTER_DEFINE_CLASS(settb);
  123. static av_cold int settb_init(AVFilterContext *ctx, const char *args)
  124. {
  125. return init(ctx, args, &settb_class);
  126. }
  127. static const AVFilterPad avfilter_vf_settb_inputs[] = {
  128. {
  129. .name = "default",
  130. .type = AVMEDIA_TYPE_VIDEO,
  131. .get_video_buffer = ff_null_get_video_buffer,
  132. .filter_frame = filter_frame,
  133. },
  134. { NULL }
  135. };
  136. static const AVFilterPad avfilter_vf_settb_outputs[] = {
  137. {
  138. .name = "default",
  139. .type = AVMEDIA_TYPE_VIDEO,
  140. .config_props = config_output_props,
  141. },
  142. { NULL }
  143. };
  144. AVFilter avfilter_vf_settb = {
  145. .name = "settb",
  146. .description = NULL_IF_CONFIG_SMALL("Set timebase for the video output link."),
  147. .init = settb_init,
  148. .uninit = uninit,
  149. .priv_size = sizeof(SetTBContext),
  150. .inputs = avfilter_vf_settb_inputs,
  151. .outputs = avfilter_vf_settb_outputs,
  152. .priv_class = &settb_class,
  153. };
  154. #endif
  155. #if CONFIG_ASETTB_FILTER
  156. DEFINE_OPTIONS(asettb, AUDIO);
  157. AVFILTER_DEFINE_CLASS(asettb);
  158. static av_cold int asettb_init(AVFilterContext *ctx, const char *args)
  159. {
  160. return init(ctx, args, &asettb_class);
  161. }
  162. static const AVFilterPad avfilter_af_asettb_inputs[] = {
  163. {
  164. .name = "default",
  165. .type = AVMEDIA_TYPE_AUDIO,
  166. .get_audio_buffer = ff_null_get_audio_buffer,
  167. .filter_frame = filter_frame,
  168. },
  169. { NULL }
  170. };
  171. static const AVFilterPad avfilter_af_asettb_outputs[] = {
  172. {
  173. .name = "default",
  174. .type = AVMEDIA_TYPE_AUDIO,
  175. .config_props = config_output_props,
  176. },
  177. { NULL }
  178. };
  179. AVFilter avfilter_af_asettb = {
  180. .name = "asettb",
  181. .description = NULL_IF_CONFIG_SMALL("Set timebase for the audio output link."),
  182. .init = asettb_init,
  183. .uninit = uninit,
  184. .priv_size = sizeof(SetTBContext),
  185. .inputs = avfilter_af_asettb_inputs,
  186. .outputs = avfilter_af_asettb_outputs,
  187. .priv_class = &asettb_class,
  188. };
  189. #endif