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.

303 lines
9.6KB

  1. /*
  2. * Copyright 2007 Bobby Bingham
  3. * Copyright 2012 Robert Nagy <ronag89 gmail com>
  4. * Copyright 2012 Anton Khirnov <anton khirnov net>
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. /**
  23. * @file
  24. * a filter enforcing given constant framerate
  25. */
  26. #include <float.h>
  27. #include "libavutil/common.h"
  28. #include "libavutil/fifo.h"
  29. #include "libavutil/mathematics.h"
  30. #include "libavutil/opt.h"
  31. #include "libavutil/parseutils.h"
  32. #include "avfilter.h"
  33. #include "internal.h"
  34. #include "video.h"
  35. typedef struct FPSContext {
  36. const AVClass *class;
  37. AVFifoBuffer *fifo; ///< store frames until we get two successive timestamps
  38. /* timestamps in input timebase */
  39. int64_t first_pts; ///< pts of the first frame that arrived on this filter
  40. int64_t pts; ///< pts of the first frame currently in the fifo
  41. double start_time; ///< pts, in seconds, of the expected first frame
  42. AVRational framerate; ///< target framerate
  43. int rounding; ///< AVRounding method for timestamps
  44. /* statistics */
  45. int frames_in; ///< number of frames on input
  46. int frames_out; ///< number of frames on output
  47. int dup; ///< number of frames duplicated
  48. int drop; ///< number of framed dropped
  49. } FPSContext;
  50. #define OFFSET(x) offsetof(FPSContext, x)
  51. #define V AV_OPT_FLAG_VIDEO_PARAM
  52. #define F AV_OPT_FLAG_FILTERING_PARAM
  53. static const AVOption fps_options[] = {
  54. { "fps", "A string describing desired output framerate", OFFSET(framerate), AV_OPT_TYPE_VIDEO_RATE, { .str = "25" }, .flags = V|F },
  55. { "start_time", "Assume the first PTS should be this value.", OFFSET(start_time), AV_OPT_TYPE_DOUBLE, { .dbl = DBL_MAX}, -DBL_MAX, DBL_MAX, V },
  56. { "round", "set rounding method for timestamps", OFFSET(rounding), AV_OPT_TYPE_INT, { .i64 = AV_ROUND_NEAR_INF }, 0, 5, V|F, "round" },
  57. { "zero", "round towards 0", OFFSET(rounding), AV_OPT_TYPE_CONST, { .i64 = AV_ROUND_ZERO }, 0, 5, V|F, "round" },
  58. { "inf", "round away from 0", OFFSET(rounding), AV_OPT_TYPE_CONST, { .i64 = AV_ROUND_INF }, 0, 5, V|F, "round" },
  59. { "down", "round towards -infty", OFFSET(rounding), AV_OPT_TYPE_CONST, { .i64 = AV_ROUND_DOWN }, 0, 5, V|F, "round" },
  60. { "up", "round towards +infty", OFFSET(rounding), AV_OPT_TYPE_CONST, { .i64 = AV_ROUND_UP }, 0, 5, V|F, "round" },
  61. { "near", "round to nearest", OFFSET(rounding), AV_OPT_TYPE_CONST, { .i64 = AV_ROUND_NEAR_INF }, 0, 5, V|F, "round" },
  62. { NULL }
  63. };
  64. AVFILTER_DEFINE_CLASS(fps);
  65. static av_cold int init(AVFilterContext *ctx)
  66. {
  67. FPSContext *s = ctx->priv;
  68. if (!(s->fifo = av_fifo_alloc(2*sizeof(AVFrame*))))
  69. return AVERROR(ENOMEM);
  70. s->pts = AV_NOPTS_VALUE;
  71. s->first_pts = AV_NOPTS_VALUE;
  72. av_log(ctx, AV_LOG_VERBOSE, "fps=%d/%d\n", s->framerate.num, s->framerate.den);
  73. return 0;
  74. }
  75. static void flush_fifo(AVFifoBuffer *fifo)
  76. {
  77. while (av_fifo_size(fifo)) {
  78. AVFrame *tmp;
  79. av_fifo_generic_read(fifo, &tmp, sizeof(tmp), NULL);
  80. av_frame_free(&tmp);
  81. }
  82. }
  83. static av_cold void uninit(AVFilterContext *ctx)
  84. {
  85. FPSContext *s = ctx->priv;
  86. if (s->fifo) {
  87. s->drop += av_fifo_size(s->fifo) / sizeof(AVFrame*);
  88. flush_fifo(s->fifo);
  89. av_fifo_free(s->fifo);
  90. }
  91. av_log(ctx, AV_LOG_VERBOSE, "%d frames in, %d frames out; %d frames dropped, "
  92. "%d frames duplicated.\n", s->frames_in, s->frames_out, s->drop, s->dup);
  93. }
  94. static int config_props(AVFilterLink* link)
  95. {
  96. FPSContext *s = link->src->priv;
  97. link->time_base = av_inv_q(s->framerate);
  98. link->frame_rate= s->framerate;
  99. link->w = link->src->inputs[0]->w;
  100. link->h = link->src->inputs[0]->h;
  101. return 0;
  102. }
  103. static int request_frame(AVFilterLink *outlink)
  104. {
  105. AVFilterContext *ctx = outlink->src;
  106. FPSContext *s = ctx->priv;
  107. int frames_out = s->frames_out;
  108. int ret = 0;
  109. while (ret >= 0 && s->frames_out == frames_out)
  110. ret = ff_request_frame(ctx->inputs[0]);
  111. /* flush the fifo */
  112. if (ret == AVERROR_EOF && av_fifo_size(s->fifo)) {
  113. int i;
  114. for (i = 0; av_fifo_size(s->fifo); i++) {
  115. AVFrame *buf;
  116. av_fifo_generic_read(s->fifo, &buf, sizeof(buf), NULL);
  117. buf->pts = av_rescale_q(s->first_pts, ctx->inputs[0]->time_base,
  118. outlink->time_base) + s->frames_out;
  119. if ((ret = ff_filter_frame(outlink, buf)) < 0)
  120. return ret;
  121. s->frames_out++;
  122. }
  123. return 0;
  124. }
  125. return ret;
  126. }
  127. static int write_to_fifo(AVFifoBuffer *fifo, AVFrame *buf)
  128. {
  129. int ret;
  130. if (!av_fifo_space(fifo) &&
  131. (ret = av_fifo_realloc2(fifo, 2*av_fifo_size(fifo)))) {
  132. av_frame_free(&buf);
  133. return ret;
  134. }
  135. av_fifo_generic_write(fifo, &buf, sizeof(buf), NULL);
  136. return 0;
  137. }
  138. static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
  139. {
  140. AVFilterContext *ctx = inlink->dst;
  141. FPSContext *s = ctx->priv;
  142. AVFilterLink *outlink = ctx->outputs[0];
  143. int64_t delta;
  144. int i, ret;
  145. s->frames_in++;
  146. /* discard frames until we get the first timestamp */
  147. if (s->pts == AV_NOPTS_VALUE) {
  148. if (buf->pts != AV_NOPTS_VALUE) {
  149. ret = write_to_fifo(s->fifo, buf);
  150. if (ret < 0)
  151. return ret;
  152. if (s->start_time != DBL_MAX && s->start_time != AV_NOPTS_VALUE) {
  153. double first_pts = s->start_time * AV_TIME_BASE;
  154. first_pts = FFMIN(FFMAX(first_pts, INT64_MIN), INT64_MAX);
  155. s->first_pts = s->pts = av_rescale_q(first_pts, AV_TIME_BASE_Q,
  156. inlink->time_base);
  157. av_log(ctx, AV_LOG_VERBOSE, "Set first pts to (in:%"PRId64" out:%"PRId64")\n",
  158. s->first_pts, av_rescale_q(first_pts, AV_TIME_BASE_Q,
  159. outlink->time_base));
  160. } else {
  161. s->first_pts = s->pts = buf->pts;
  162. }
  163. } else {
  164. av_log(ctx, AV_LOG_WARNING, "Discarding initial frame(s) with no "
  165. "timestamp.\n");
  166. av_frame_free(&buf);
  167. s->drop++;
  168. }
  169. return 0;
  170. }
  171. /* now wait for the next timestamp */
  172. if (buf->pts == AV_NOPTS_VALUE || av_fifo_size(s->fifo) <= 0) {
  173. return write_to_fifo(s->fifo, buf);
  174. }
  175. /* number of output frames */
  176. delta = av_rescale_q_rnd(buf->pts - s->pts, inlink->time_base,
  177. outlink->time_base, s->rounding);
  178. if (delta < 1) {
  179. /* drop the frame and everything buffered except the first */
  180. AVFrame *tmp;
  181. int drop = av_fifo_size(s->fifo)/sizeof(AVFrame*);
  182. av_log(ctx, AV_LOG_DEBUG, "Dropping %d frame(s).\n", drop);
  183. s->drop += drop;
  184. av_fifo_generic_read(s->fifo, &tmp, sizeof(tmp), NULL);
  185. flush_fifo(s->fifo);
  186. ret = write_to_fifo(s->fifo, tmp);
  187. av_frame_free(&buf);
  188. return ret;
  189. }
  190. /* can output >= 1 frames */
  191. for (i = 0; i < delta; i++) {
  192. AVFrame *buf_out;
  193. av_fifo_generic_read(s->fifo, &buf_out, sizeof(buf_out), NULL);
  194. /* duplicate the frame if needed */
  195. if (!av_fifo_size(s->fifo) && i < delta - 1) {
  196. AVFrame *dup = av_frame_clone(buf_out);
  197. av_log(ctx, AV_LOG_DEBUG, "Duplicating frame.\n");
  198. if (dup)
  199. ret = write_to_fifo(s->fifo, dup);
  200. else
  201. ret = AVERROR(ENOMEM);
  202. if (ret < 0) {
  203. av_frame_free(&buf_out);
  204. av_frame_free(&buf);
  205. return ret;
  206. }
  207. s->dup++;
  208. }
  209. buf_out->pts = av_rescale_q(s->first_pts, inlink->time_base,
  210. outlink->time_base) + s->frames_out;
  211. if ((ret = ff_filter_frame(outlink, buf_out)) < 0) {
  212. av_frame_free(&buf);
  213. return ret;
  214. }
  215. s->frames_out++;
  216. }
  217. flush_fifo(s->fifo);
  218. ret = write_to_fifo(s->fifo, buf);
  219. s->pts = s->first_pts + av_rescale_q(s->frames_out, outlink->time_base, inlink->time_base);
  220. return ret;
  221. }
  222. static const AVFilterPad avfilter_vf_fps_inputs[] = {
  223. {
  224. .name = "default",
  225. .type = AVMEDIA_TYPE_VIDEO,
  226. .filter_frame = filter_frame,
  227. },
  228. { NULL }
  229. };
  230. static const AVFilterPad avfilter_vf_fps_outputs[] = {
  231. {
  232. .name = "default",
  233. .type = AVMEDIA_TYPE_VIDEO,
  234. .request_frame = request_frame,
  235. .config_props = config_props
  236. },
  237. { NULL }
  238. };
  239. AVFilter ff_vf_fps = {
  240. .name = "fps",
  241. .description = NULL_IF_CONFIG_SMALL("Force constant framerate."),
  242. .init = init,
  243. .uninit = uninit,
  244. .priv_size = sizeof(FPSContext),
  245. .priv_class = &fps_class,
  246. .inputs = avfilter_vf_fps_inputs,
  247. .outputs = avfilter_vf_fps_outputs,
  248. };