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.

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