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.

304 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 <stdint.h>
  28. #include "libavutil/common.h"
  29. #include "libavutil/fifo.h"
  30. #include "libavutil/mathematics.h"
  31. #include "libavutil/opt.h"
  32. #include "libavutil/parseutils.h"
  33. #include "avfilter.h"
  34. #include "internal.h"
  35. #include "video.h"
  36. typedef struct FPSContext {
  37. const AVClass *class;
  38. AVFifoBuffer *fifo; ///< store frames until we get two successive timestamps
  39. /* timestamps in input timebase */
  40. int64_t first_pts; ///< pts of the first frame that arrived on this filter
  41. int64_t pts; ///< pts of the first frame currently in the fifo
  42. double start_time; ///< pts, in seconds, of the expected first frame
  43. AVRational framerate; ///< target framerate
  44. int rounding; ///< AVRounding method for timestamps
  45. /* statistics */
  46. int frames_in; ///< number of frames on input
  47. int frames_out; ///< number of frames on output
  48. int dup; ///< number of frames duplicated
  49. int drop; ///< number of framed dropped
  50. } FPSContext;
  51. #define OFFSET(x) offsetof(FPSContext, x)
  52. #define V AV_OPT_FLAG_VIDEO_PARAM
  53. #define F AV_OPT_FLAG_FILTERING_PARAM
  54. static const AVOption fps_options[] = {
  55. { "fps", "A string describing desired output framerate", OFFSET(framerate), AV_OPT_TYPE_VIDEO_RATE, { .str = "25" }, .flags = V|F },
  56. { "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 },
  57. { "round", "set rounding method for timestamps", OFFSET(rounding), AV_OPT_TYPE_INT, { .i64 = AV_ROUND_NEAR_INF }, 0, 5, V|F, "round" },
  58. { "zero", "round towards 0", OFFSET(rounding), AV_OPT_TYPE_CONST, { .i64 = AV_ROUND_ZERO }, 0, 5, V|F, "round" },
  59. { "inf", "round away from 0", OFFSET(rounding), AV_OPT_TYPE_CONST, { .i64 = AV_ROUND_INF }, 0, 5, V|F, "round" },
  60. { "down", "round towards -infty", OFFSET(rounding), AV_OPT_TYPE_CONST, { .i64 = AV_ROUND_DOWN }, 0, 5, V|F, "round" },
  61. { "up", "round towards +infty", OFFSET(rounding), AV_OPT_TYPE_CONST, { .i64 = AV_ROUND_UP }, 0, 5, V|F, "round" },
  62. { "near", "round to nearest", OFFSET(rounding), AV_OPT_TYPE_CONST, { .i64 = AV_ROUND_NEAR_INF }, 0, 5, V|F, "round" },
  63. { NULL }
  64. };
  65. AVFILTER_DEFINE_CLASS(fps);
  66. static av_cold int init(AVFilterContext *ctx)
  67. {
  68. FPSContext *s = ctx->priv;
  69. if (!(s->fifo = av_fifo_alloc(2*sizeof(AVFrame*))))
  70. return AVERROR(ENOMEM);
  71. s->pts = AV_NOPTS_VALUE;
  72. s->first_pts = AV_NOPTS_VALUE;
  73. av_log(ctx, AV_LOG_VERBOSE, "fps=%d/%d\n", s->framerate.num, s->framerate.den);
  74. return 0;
  75. }
  76. static void flush_fifo(AVFifoBuffer *fifo)
  77. {
  78. while (av_fifo_size(fifo)) {
  79. AVFrame *tmp;
  80. av_fifo_generic_read(fifo, &tmp, sizeof(tmp), NULL);
  81. av_frame_free(&tmp);
  82. }
  83. }
  84. static av_cold void uninit(AVFilterContext *ctx)
  85. {
  86. FPSContext *s = ctx->priv;
  87. if (s->fifo) {
  88. s->drop += av_fifo_size(s->fifo) / sizeof(AVFrame*);
  89. flush_fifo(s->fifo);
  90. av_fifo_free(s->fifo);
  91. }
  92. av_log(ctx, AV_LOG_VERBOSE, "%d frames in, %d frames out; %d frames dropped, "
  93. "%d frames duplicated.\n", s->frames_in, s->frames_out, s->drop, s->dup);
  94. }
  95. static int config_props(AVFilterLink* link)
  96. {
  97. FPSContext *s = link->src->priv;
  98. link->time_base = av_inv_q(s->framerate);
  99. link->frame_rate= s->framerate;
  100. link->w = link->src->inputs[0]->w;
  101. link->h = link->src->inputs[0]->h;
  102. return 0;
  103. }
  104. static int request_frame(AVFilterLink *outlink)
  105. {
  106. AVFilterContext *ctx = outlink->src;
  107. FPSContext *s = ctx->priv;
  108. int frames_out = s->frames_out;
  109. int ret = 0;
  110. while (ret >= 0 && s->frames_out == frames_out)
  111. ret = ff_request_frame(ctx->inputs[0]);
  112. /* flush the fifo */
  113. if (ret == AVERROR_EOF && av_fifo_size(s->fifo)) {
  114. int i;
  115. for (i = 0; av_fifo_size(s->fifo); i++) {
  116. AVFrame *buf;
  117. av_fifo_generic_read(s->fifo, &buf, sizeof(buf), NULL);
  118. buf->pts = av_rescale_q(s->first_pts, ctx->inputs[0]->time_base,
  119. outlink->time_base) + s->frames_out;
  120. if ((ret = ff_filter_frame(outlink, buf)) < 0)
  121. return ret;
  122. s->frames_out++;
  123. }
  124. return 0;
  125. }
  126. return ret;
  127. }
  128. static int write_to_fifo(AVFifoBuffer *fifo, AVFrame *buf)
  129. {
  130. int ret;
  131. if (!av_fifo_space(fifo) &&
  132. (ret = av_fifo_realloc2(fifo, 2*av_fifo_size(fifo)))) {
  133. av_frame_free(&buf);
  134. return ret;
  135. }
  136. av_fifo_generic_write(fifo, &buf, sizeof(buf), NULL);
  137. return 0;
  138. }
  139. static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
  140. {
  141. AVFilterContext *ctx = inlink->dst;
  142. FPSContext *s = ctx->priv;
  143. AVFilterLink *outlink = ctx->outputs[0];
  144. int64_t delta;
  145. int i, ret;
  146. s->frames_in++;
  147. /* discard frames until we get the first timestamp */
  148. if (s->pts == AV_NOPTS_VALUE) {
  149. if (buf->pts != AV_NOPTS_VALUE) {
  150. ret = write_to_fifo(s->fifo, buf);
  151. if (ret < 0)
  152. return ret;
  153. if (s->start_time != DBL_MAX && s->start_time != AV_NOPTS_VALUE) {
  154. double first_pts = s->start_time * AV_TIME_BASE;
  155. first_pts = FFMIN(FFMAX(first_pts, INT64_MIN), INT64_MAX);
  156. s->first_pts = s->pts = av_rescale_q(first_pts, AV_TIME_BASE_Q,
  157. inlink->time_base);
  158. av_log(ctx, AV_LOG_VERBOSE, "Set first pts to (in:%"PRId64" out:%"PRId64")\n",
  159. s->first_pts, av_rescale_q(first_pts, AV_TIME_BASE_Q,
  160. outlink->time_base));
  161. } else {
  162. s->first_pts = s->pts = buf->pts;
  163. }
  164. } else {
  165. av_log(ctx, AV_LOG_WARNING, "Discarding initial frame(s) with no "
  166. "timestamp.\n");
  167. av_frame_free(&buf);
  168. s->drop++;
  169. }
  170. return 0;
  171. }
  172. /* now wait for the next timestamp */
  173. if (buf->pts == AV_NOPTS_VALUE || av_fifo_size(s->fifo) <= 0) {
  174. return write_to_fifo(s->fifo, buf);
  175. }
  176. /* number of output frames */
  177. delta = av_rescale_q_rnd(buf->pts - s->pts, inlink->time_base,
  178. outlink->time_base, s->rounding);
  179. if (delta < 1) {
  180. /* drop the frame and everything buffered except the first */
  181. AVFrame *tmp;
  182. int drop = av_fifo_size(s->fifo)/sizeof(AVFrame*);
  183. av_log(ctx, AV_LOG_DEBUG, "Dropping %d frame(s).\n", drop);
  184. s->drop += drop;
  185. av_fifo_generic_read(s->fifo, &tmp, sizeof(tmp), NULL);
  186. flush_fifo(s->fifo);
  187. ret = write_to_fifo(s->fifo, tmp);
  188. av_frame_free(&buf);
  189. return ret;
  190. }
  191. /* can output >= 1 frames */
  192. for (i = 0; i < delta; i++) {
  193. AVFrame *buf_out;
  194. av_fifo_generic_read(s->fifo, &buf_out, sizeof(buf_out), NULL);
  195. /* duplicate the frame if needed */
  196. if (!av_fifo_size(s->fifo) && i < delta - 1) {
  197. AVFrame *dup = av_frame_clone(buf_out);
  198. av_log(ctx, AV_LOG_DEBUG, "Duplicating frame.\n");
  199. if (dup)
  200. ret = write_to_fifo(s->fifo, dup);
  201. else
  202. ret = AVERROR(ENOMEM);
  203. if (ret < 0) {
  204. av_frame_free(&buf_out);
  205. av_frame_free(&buf);
  206. return ret;
  207. }
  208. s->dup++;
  209. }
  210. buf_out->pts = av_rescale_q(s->first_pts, inlink->time_base,
  211. outlink->time_base) + s->frames_out;
  212. if ((ret = ff_filter_frame(outlink, buf_out)) < 0) {
  213. av_frame_free(&buf);
  214. return ret;
  215. }
  216. s->frames_out++;
  217. }
  218. flush_fifo(s->fifo);
  219. ret = write_to_fifo(s->fifo, buf);
  220. s->pts = s->first_pts + av_rescale_q(s->frames_out, outlink->time_base, inlink->time_base);
  221. return ret;
  222. }
  223. static const AVFilterPad avfilter_vf_fps_inputs[] = {
  224. {
  225. .name = "default",
  226. .type = AVMEDIA_TYPE_VIDEO,
  227. .filter_frame = filter_frame,
  228. },
  229. { NULL }
  230. };
  231. static const AVFilterPad avfilter_vf_fps_outputs[] = {
  232. {
  233. .name = "default",
  234. .type = AVMEDIA_TYPE_VIDEO,
  235. .request_frame = request_frame,
  236. .config_props = config_props
  237. },
  238. { NULL }
  239. };
  240. AVFilter ff_vf_fps = {
  241. .name = "fps",
  242. .description = NULL_IF_CONFIG_SMALL("Force constant framerate."),
  243. .init = init,
  244. .uninit = uninit,
  245. .priv_size = sizeof(FPSContext),
  246. .priv_class = &fps_class,
  247. .inputs = avfilter_vf_fps_inputs,
  248. .outputs = avfilter_vf_fps_outputs,
  249. };