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.

306 lines
9.4KB

  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. const char *shorthand[] = { "fps", "round", NULL };
  67. int ret;
  68. s->class = &fps_class;
  69. av_opt_set_defaults(s);
  70. if ((ret = av_opt_set_from_string(s, args, shorthand, "=", ":")) < 0)
  71. return ret;
  72. if ((ret = av_parse_video_rate(&s->framerate, s->fps)) < 0) {
  73. av_log(ctx, AV_LOG_ERROR, "Error parsing framerate %s.\n", s->fps);
  74. return ret;
  75. }
  76. av_opt_free(s);
  77. if (!(s->fifo = av_fifo_alloc(2*sizeof(AVFilterBufferRef*))))
  78. return AVERROR(ENOMEM);
  79. av_log(ctx, AV_LOG_VERBOSE, "fps=%d/%d\n", s->framerate.num, s->framerate.den);
  80. return 0;
  81. }
  82. static void flush_fifo(AVFifoBuffer *fifo)
  83. {
  84. while (av_fifo_size(fifo)) {
  85. AVFilterBufferRef *tmp;
  86. av_fifo_generic_read(fifo, &tmp, sizeof(tmp), NULL);
  87. avfilter_unref_buffer(tmp);
  88. }
  89. }
  90. static av_cold void uninit(AVFilterContext *ctx)
  91. {
  92. FPSContext *s = ctx->priv;
  93. if (s->fifo) {
  94. s->drop += av_fifo_size(s->fifo) / sizeof(AVFilterBufferRef*);
  95. flush_fifo(s->fifo);
  96. av_fifo_free(s->fifo);
  97. }
  98. av_log(ctx, AV_LOG_VERBOSE, "%d frames in, %d frames out; %d frames dropped, "
  99. "%d frames duplicated.\n", s->frames_in, s->frames_out, s->drop, s->dup);
  100. }
  101. static int config_props(AVFilterLink* link)
  102. {
  103. FPSContext *s = link->src->priv;
  104. link->time_base = av_inv_q(s->framerate);
  105. link->frame_rate= s->framerate;
  106. link->w = link->src->inputs[0]->w;
  107. link->h = link->src->inputs[0]->h;
  108. s->pts = AV_NOPTS_VALUE;
  109. return 0;
  110. }
  111. static int request_frame(AVFilterLink *outlink)
  112. {
  113. AVFilterContext *ctx = outlink->src;
  114. FPSContext *s = ctx->priv;
  115. int frames_out = s->frames_out;
  116. int ret = 0;
  117. while (ret >= 0 && s->frames_out == frames_out)
  118. ret = ff_request_frame(ctx->inputs[0]);
  119. /* flush the fifo */
  120. if (ret == AVERROR_EOF && av_fifo_size(s->fifo)) {
  121. int i;
  122. for (i = 0; av_fifo_size(s->fifo); i++) {
  123. AVFilterBufferRef *buf;
  124. av_fifo_generic_read(s->fifo, &buf, sizeof(buf), NULL);
  125. buf->pts = av_rescale_q(s->first_pts, ctx->inputs[0]->time_base,
  126. outlink->time_base) + s->frames_out;
  127. if ((ret = ff_filter_frame(outlink, buf)) < 0)
  128. return ret;
  129. s->frames_out++;
  130. }
  131. return 0;
  132. }
  133. return ret;
  134. }
  135. static int write_to_fifo(AVFifoBuffer *fifo, AVFilterBufferRef *buf)
  136. {
  137. int ret;
  138. if (!av_fifo_space(fifo) &&
  139. (ret = av_fifo_realloc2(fifo, 2*av_fifo_size(fifo)))) {
  140. avfilter_unref_bufferp(&buf);
  141. return ret;
  142. }
  143. av_fifo_generic_write(fifo, &buf, sizeof(buf), NULL);
  144. return 0;
  145. }
  146. static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *buf)
  147. {
  148. AVFilterContext *ctx = inlink->dst;
  149. FPSContext *s = ctx->priv;
  150. AVFilterLink *outlink = ctx->outputs[0];
  151. int64_t delta;
  152. int i, ret;
  153. s->frames_in++;
  154. /* discard frames until we get the first timestamp */
  155. if (s->pts == AV_NOPTS_VALUE) {
  156. if (buf->pts != AV_NOPTS_VALUE) {
  157. ret = write_to_fifo(s->fifo, buf);
  158. if (ret < 0)
  159. return ret;
  160. s->first_pts = s->pts = buf->pts;
  161. } else {
  162. av_log(ctx, AV_LOG_WARNING, "Discarding initial frame(s) with no "
  163. "timestamp.\n");
  164. avfilter_unref_buffer(buf);
  165. s->drop++;
  166. }
  167. return 0;
  168. }
  169. /* now wait for the next timestamp */
  170. if (buf->pts == AV_NOPTS_VALUE) {
  171. return write_to_fifo(s->fifo, buf);
  172. }
  173. /* number of output frames */
  174. delta = av_rescale_q_rnd(buf->pts - s->pts, inlink->time_base,
  175. outlink->time_base, s->rounding);
  176. if (delta < 1) {
  177. /* drop the frame and everything buffered except the first */
  178. AVFilterBufferRef *tmp;
  179. int drop = av_fifo_size(s->fifo)/sizeof(AVFilterBufferRef*);
  180. av_log(ctx, AV_LOG_DEBUG, "Dropping %d frame(s).\n", drop);
  181. s->drop += drop;
  182. av_fifo_generic_read(s->fifo, &tmp, sizeof(tmp), NULL);
  183. flush_fifo(s->fifo);
  184. ret = write_to_fifo(s->fifo, tmp);
  185. avfilter_unref_buffer(buf);
  186. return ret;
  187. }
  188. /* can output >= 1 frames */
  189. for (i = 0; i < delta; i++) {
  190. AVFilterBufferRef *buf_out;
  191. av_fifo_generic_read(s->fifo, &buf_out, sizeof(buf_out), NULL);
  192. /* duplicate the frame if needed */
  193. if (!av_fifo_size(s->fifo) && i < delta - 1) {
  194. AVFilterBufferRef *dup = avfilter_ref_buffer(buf_out, ~0);
  195. av_log(ctx, AV_LOG_DEBUG, "Duplicating frame.\n");
  196. if (dup)
  197. ret = write_to_fifo(s->fifo, dup);
  198. else
  199. ret = AVERROR(ENOMEM);
  200. if (ret < 0) {
  201. avfilter_unref_bufferp(&buf_out);
  202. avfilter_unref_bufferp(&buf);
  203. return ret;
  204. }
  205. s->dup++;
  206. }
  207. buf_out->pts = av_rescale_q(s->first_pts, inlink->time_base,
  208. outlink->time_base) + s->frames_out;
  209. if ((ret = ff_filter_frame(outlink, buf_out)) < 0) {
  210. avfilter_unref_bufferp(&buf);
  211. return ret;
  212. }
  213. s->frames_out++;
  214. }
  215. flush_fifo(s->fifo);
  216. ret = write_to_fifo(s->fifo, buf);
  217. s->pts = s->first_pts + av_rescale_q(s->frames_out, outlink->time_base, inlink->time_base);
  218. return ret;
  219. }
  220. static const AVFilterPad avfilter_vf_fps_inputs[] = {
  221. {
  222. .name = "default",
  223. .type = AVMEDIA_TYPE_VIDEO,
  224. .min_perms = AV_PERM_READ | AV_PERM_PRESERVE,
  225. .filter_frame = filter_frame,
  226. },
  227. { NULL }
  228. };
  229. static const AVFilterPad avfilter_vf_fps_outputs[] = {
  230. {
  231. .name = "default",
  232. .type = AVMEDIA_TYPE_VIDEO,
  233. .rej_perms = AV_PERM_WRITE,
  234. .request_frame = request_frame,
  235. .config_props = config_props
  236. },
  237. { NULL }
  238. };
  239. AVFilter avfilter_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. .inputs = avfilter_vf_fps_inputs,
  246. .outputs = avfilter_vf_fps_outputs,
  247. .priv_class = &fps_class,
  248. };