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.

325 lines
9.9KB

  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. char *fps; ///< a string describing target framerate
  42. int rounding; ///< AVRounding method for timestamps
  43. /* statistics */
  44. int frames_in; ///< number of frames on input
  45. int frames_out; ///< number of frames on output
  46. int dup; ///< number of frames duplicated
  47. int drop; ///< number of framed dropped
  48. } FPSContext;
  49. #define OFFSET(x) offsetof(FPSContext, x)
  50. #define V AV_OPT_FLAG_VIDEO_PARAM
  51. #define F AV_OPT_FLAG_FILTERING_PARAM
  52. static const AVOption fps_options[] = {
  53. { "fps", "A string describing desired output framerate", OFFSET(fps), AV_OPT_TYPE_STRING, { .str = "25" }, .flags = V|F },
  54. { "round", "set rounding method for timestamps", OFFSET(rounding), AV_OPT_TYPE_INT, { .i64 = AV_ROUND_NEAR_INF }, 0, 5, V|F, "round" },
  55. { "zero", "round towards 0", OFFSET(rounding), AV_OPT_TYPE_CONST, { .i64 = AV_ROUND_ZERO }, 0, 5, V|F, "round" },
  56. { "inf", "round away from 0", OFFSET(rounding), AV_OPT_TYPE_CONST, { .i64 = AV_ROUND_INF }, 0, 5, V|F, "round" },
  57. { "down", "round towards -infty", OFFSET(rounding), AV_OPT_TYPE_CONST, { .i64 = AV_ROUND_DOWN }, 0, 5, V|F, "round" },
  58. { "up", "round towards +infty", OFFSET(rounding), AV_OPT_TYPE_CONST, { .i64 = AV_ROUND_UP }, 0, 5, V|F, "round" },
  59. { "near", "round to nearest", OFFSET(rounding), AV_OPT_TYPE_CONST, { .i64 = AV_ROUND_NEAR_INF }, 0, 5, V|F, "round" },
  60. { NULL },
  61. };
  62. AVFILTER_DEFINE_CLASS(fps);
  63. static av_cold int init(AVFilterContext *ctx, const char *args)
  64. {
  65. FPSContext *s = ctx->priv;
  66. int ret;
  67. s->class = &fps_class;
  68. av_opt_set_defaults(s);
  69. if ((ret = av_set_options_string(s, args, "=", ":")) < 0) {
  70. av_log(ctx, AV_LOG_ERROR, "Error parsing the options string %s.\n",
  71. args);
  72. return ret;
  73. }
  74. if ((ret = av_parse_video_rate(&s->framerate, s->fps)) < 0) {
  75. av_log(ctx, AV_LOG_ERROR, "Error parsing framerate %s.\n", s->fps);
  76. return ret;
  77. }
  78. av_opt_free(s);
  79. if (!(s->fifo = av_fifo_alloc(2*sizeof(AVFilterBufferRef*))))
  80. return AVERROR(ENOMEM);
  81. av_log(ctx, AV_LOG_VERBOSE, "fps=%d/%d\n", s->framerate.num, s->framerate.den);
  82. return 0;
  83. }
  84. static void flush_fifo(AVFifoBuffer *fifo)
  85. {
  86. while (av_fifo_size(fifo)) {
  87. AVFilterBufferRef *tmp;
  88. av_fifo_generic_read(fifo, &tmp, sizeof(tmp), NULL);
  89. avfilter_unref_buffer(tmp);
  90. }
  91. }
  92. static av_cold void uninit(AVFilterContext *ctx)
  93. {
  94. FPSContext *s = ctx->priv;
  95. if (s->fifo) {
  96. flush_fifo(s->fifo);
  97. av_fifo_free(s->fifo);
  98. }
  99. av_log(ctx, AV_LOG_VERBOSE, "%d frames in, %d frames out; %d frames dropped, "
  100. "%d frames duplicated.\n", s->frames_in, s->frames_out, s->drop, s->dup);
  101. }
  102. static int config_props(AVFilterLink* link)
  103. {
  104. FPSContext *s = link->src->priv;
  105. link->time_base = av_inv_q(s->framerate);
  106. link->frame_rate= s->framerate;
  107. link->w = link->src->inputs[0]->w;
  108. link->h = link->src->inputs[0]->h;
  109. s->pts = AV_NOPTS_VALUE;
  110. return 0;
  111. }
  112. static int request_frame(AVFilterLink *outlink)
  113. {
  114. AVFilterContext *ctx = outlink->src;
  115. FPSContext *s = ctx->priv;
  116. int frames_out = s->frames_out;
  117. int ret = 0;
  118. while (ret >= 0 && s->frames_out == frames_out)
  119. ret = ff_request_frame(ctx->inputs[0]);
  120. /* flush the fifo */
  121. if (ret == AVERROR_EOF && av_fifo_size(s->fifo)) {
  122. int i;
  123. for (i = 0; av_fifo_size(s->fifo); i++) {
  124. AVFilterBufferRef *buf;
  125. av_fifo_generic_read(s->fifo, &buf, sizeof(buf), NULL);
  126. buf->pts = av_rescale_q(s->first_pts, ctx->inputs[0]->time_base,
  127. outlink->time_base) + s->frames_out;
  128. if ((ret = ff_start_frame(outlink, buf)) < 0 ||
  129. (ret = ff_draw_slice(outlink, 0, outlink->h, 1)) < 0 ||
  130. (ret = ff_end_frame(outlink)) < 0)
  131. return ret;
  132. s->frames_out++;
  133. }
  134. return 0;
  135. }
  136. return ret;
  137. }
  138. static int write_to_fifo(AVFifoBuffer *fifo, AVFilterBufferRef *buf)
  139. {
  140. int ret;
  141. if (!av_fifo_space(fifo) &&
  142. (ret = av_fifo_realloc2(fifo, 2*av_fifo_size(fifo)))) {
  143. avfilter_unref_bufferp(&buf);
  144. return ret;
  145. }
  146. av_fifo_generic_write(fifo, &buf, sizeof(buf), NULL);
  147. return 0;
  148. }
  149. static int end_frame(AVFilterLink *inlink)
  150. {
  151. AVFilterContext *ctx = inlink->dst;
  152. FPSContext *s = ctx->priv;
  153. AVFilterLink *outlink = ctx->outputs[0];
  154. AVFilterBufferRef *buf = inlink->cur_buf;
  155. int64_t delta;
  156. int i, ret;
  157. inlink->cur_buf = NULL;
  158. s->frames_in++;
  159. /* discard frames until we get the first timestamp */
  160. if (s->pts == AV_NOPTS_VALUE) {
  161. if (buf->pts != AV_NOPTS_VALUE) {
  162. ret = write_to_fifo(s->fifo, buf);
  163. if (ret < 0)
  164. return ret;
  165. s->first_pts = s->pts = buf->pts;
  166. } else {
  167. av_log(ctx, AV_LOG_WARNING, "Discarding initial frame(s) with no "
  168. "timestamp.\n");
  169. avfilter_unref_buffer(buf);
  170. s->drop++;
  171. }
  172. return 0;
  173. }
  174. /* now wait for the next timestamp */
  175. if (buf->pts == AV_NOPTS_VALUE) {
  176. return write_to_fifo(s->fifo, buf);
  177. }
  178. /* number of output frames */
  179. delta = av_rescale_q_rnd(buf->pts - s->pts, inlink->time_base,
  180. outlink->time_base, s->rounding);
  181. if (delta < 1) {
  182. /* drop the frame and everything buffered except the first */
  183. AVFilterBufferRef *tmp;
  184. int drop = av_fifo_size(s->fifo)/sizeof(AVFilterBufferRef*);
  185. av_log(ctx, AV_LOG_DEBUG, "Dropping %d frame(s).\n", drop);
  186. s->drop += drop;
  187. av_fifo_generic_read(s->fifo, &tmp, sizeof(tmp), NULL);
  188. flush_fifo(s->fifo);
  189. ret = write_to_fifo(s->fifo, tmp);
  190. avfilter_unref_buffer(buf);
  191. return ret;
  192. }
  193. /* can output >= 1 frames */
  194. for (i = 0; i < delta; i++) {
  195. AVFilterBufferRef *buf_out;
  196. av_fifo_generic_read(s->fifo, &buf_out, sizeof(buf_out), NULL);
  197. /* duplicate the frame if needed */
  198. if (!av_fifo_size(s->fifo) && i < delta - 1) {
  199. AVFilterBufferRef *dup = avfilter_ref_buffer(buf_out, ~0);
  200. av_log(ctx, AV_LOG_DEBUG, "Duplicating frame.\n");
  201. if (dup)
  202. ret = write_to_fifo(s->fifo, dup);
  203. else
  204. ret = AVERROR(ENOMEM);
  205. if (ret < 0) {
  206. avfilter_unref_bufferp(&buf_out);
  207. avfilter_unref_bufferp(&buf);
  208. return ret;
  209. }
  210. s->dup++;
  211. }
  212. buf_out->pts = av_rescale_q(s->first_pts, inlink->time_base,
  213. outlink->time_base) + s->frames_out;
  214. if ((ret = ff_start_frame(outlink, buf_out)) < 0 ||
  215. (ret = ff_draw_slice(outlink, 0, outlink->h, 1)) < 0 ||
  216. (ret = ff_end_frame(outlink)) < 0) {
  217. avfilter_unref_bufferp(&buf);
  218. return ret;
  219. }
  220. s->frames_out++;
  221. }
  222. flush_fifo(s->fifo);
  223. ret = write_to_fifo(s->fifo, buf);
  224. s->pts = s->first_pts + av_rescale_q(s->frames_out, outlink->time_base, inlink->time_base);
  225. return ret;
  226. }
  227. static int null_start_frame(AVFilterLink *link, AVFilterBufferRef *buf)
  228. {
  229. return 0;
  230. }
  231. static int null_draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
  232. {
  233. return 0;
  234. }
  235. static const AVFilterPad avfilter_vf_fps_inputs[] = {
  236. {
  237. .name = "default",
  238. .type = AVMEDIA_TYPE_VIDEO,
  239. .min_perms = AV_PERM_READ | AV_PERM_PRESERVE,
  240. .start_frame = null_start_frame,
  241. .draw_slice = null_draw_slice,
  242. .end_frame = end_frame,
  243. },
  244. { NULL }
  245. };
  246. static const AVFilterPad avfilter_vf_fps_outputs[] = {
  247. {
  248. .name = "default",
  249. .type = AVMEDIA_TYPE_VIDEO,
  250. .rej_perms = AV_PERM_WRITE,
  251. .request_frame = request_frame,
  252. .config_props = config_props
  253. },
  254. { NULL }
  255. };
  256. AVFilter avfilter_vf_fps = {
  257. .name = "fps",
  258. .description = NULL_IF_CONFIG_SMALL("Force constant framerate"),
  259. .init = init,
  260. .uninit = uninit,
  261. .priv_size = sizeof(FPSContext),
  262. .inputs = avfilter_vf_fps_inputs,
  263. .outputs = avfilter_vf_fps_outputs,
  264. .priv_class = &fps_class,
  265. };