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.

343 lines
12KB

  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. #define FF_INTERNAL_FIELDS 1
  34. #include "framequeue.h"
  35. #include "avfilter.h"
  36. #include "internal.h"
  37. #include "video.h"
  38. enum EOFAction {
  39. EOF_ACTION_ROUND,
  40. EOF_ACTION_PASS,
  41. EOF_ACTION_NB
  42. };
  43. typedef struct FPSContext {
  44. const AVClass *class;
  45. AVFifoBuffer *fifo; ///< store frames until we get two successive timestamps
  46. /* timestamps in input timebase */
  47. int64_t first_pts; ///< pts of the first frame that arrived on this filter
  48. double start_time; ///< pts, in seconds, of the expected first frame
  49. AVRational framerate; ///< target framerate
  50. int rounding; ///< AVRounding method for timestamps
  51. int eof_action; ///< action performed for last frame in FIFO
  52. /* statistics */
  53. int frames_in; ///< number of frames on input
  54. int frames_out; ///< number of frames on output
  55. int dup; ///< number of frames duplicated
  56. int drop; ///< number of framed dropped
  57. } FPSContext;
  58. #define OFFSET(x) offsetof(FPSContext, x)
  59. #define V AV_OPT_FLAG_VIDEO_PARAM
  60. #define F AV_OPT_FLAG_FILTERING_PARAM
  61. static const AVOption fps_options[] = {
  62. { "fps", "A string describing desired output framerate", OFFSET(framerate), AV_OPT_TYPE_VIDEO_RATE, { .str = "25" }, 0, INT_MAX, V|F },
  63. { "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|F },
  64. { "round", "set rounding method for timestamps", OFFSET(rounding), AV_OPT_TYPE_INT, { .i64 = AV_ROUND_NEAR_INF }, 0, 5, V|F, "round" },
  65. { "zero", "round towards 0", 0, AV_OPT_TYPE_CONST, { .i64 = AV_ROUND_ZERO }, 0, 0, V|F, "round" },
  66. { "inf", "round away from 0", 0, AV_OPT_TYPE_CONST, { .i64 = AV_ROUND_INF }, 0, 0, V|F, "round" },
  67. { "down", "round towards -infty", 0, AV_OPT_TYPE_CONST, { .i64 = AV_ROUND_DOWN }, 0, 0, V|F, "round" },
  68. { "up", "round towards +infty", 0, AV_OPT_TYPE_CONST, { .i64 = AV_ROUND_UP }, 0, 0, V|F, "round" },
  69. { "near", "round to nearest", 0, AV_OPT_TYPE_CONST, { .i64 = AV_ROUND_NEAR_INF }, 0, 0, V|F, "round" },
  70. { "eof_action", "action performed for last frame", OFFSET(eof_action), AV_OPT_TYPE_INT, { .i64 = EOF_ACTION_ROUND }, 0, EOF_ACTION_NB-1, V|F, "eof_action" },
  71. { "round", "round similar to other frames", 0, AV_OPT_TYPE_CONST, { .i64 = EOF_ACTION_ROUND }, 0, 0, V|F, "eof_action" },
  72. { "pass", "pass through last frame", 0, AV_OPT_TYPE_CONST, { .i64 = EOF_ACTION_PASS }, 0, 0, V|F, "eof_action" },
  73. { NULL }
  74. };
  75. AVFILTER_DEFINE_CLASS(fps);
  76. static av_cold int init(AVFilterContext *ctx)
  77. {
  78. FPSContext *s = ctx->priv;
  79. if (!(s->fifo = av_fifo_alloc_array(2, sizeof(AVFrame*))))
  80. return AVERROR(ENOMEM);
  81. s->first_pts = AV_NOPTS_VALUE;
  82. av_log(ctx, AV_LOG_VERBOSE, "fps=%d/%d\n", s->framerate.num, s->framerate.den);
  83. return 0;
  84. }
  85. static void flush_fifo(AVFifoBuffer *fifo)
  86. {
  87. while (av_fifo_size(fifo)) {
  88. AVFrame *tmp;
  89. av_fifo_generic_read(fifo, &tmp, sizeof(tmp), NULL);
  90. av_frame_free(&tmp);
  91. }
  92. }
  93. static av_cold void uninit(AVFilterContext *ctx)
  94. {
  95. FPSContext *s = ctx->priv;
  96. if (s->fifo) {
  97. s->drop += av_fifo_size(s->fifo) / sizeof(AVFrame*);
  98. flush_fifo(s->fifo);
  99. av_fifo_freep(&s->fifo);
  100. }
  101. av_log(ctx, AV_LOG_VERBOSE, "%d frames in, %d frames out; %d frames dropped, "
  102. "%d frames duplicated.\n", s->frames_in, s->frames_out, s->drop, s->dup);
  103. }
  104. static int config_props(AVFilterLink* link)
  105. {
  106. FPSContext *s = link->src->priv;
  107. link->time_base = av_inv_q(s->framerate);
  108. link->frame_rate= s->framerate;
  109. link->w = link->src->inputs[0]->w;
  110. link->h = link->src->inputs[0]->h;
  111. return 0;
  112. }
  113. static int request_frame(AVFilterLink *outlink)
  114. {
  115. AVFilterContext *ctx = outlink->src;
  116. FPSContext *s = ctx->priv;
  117. int ret;
  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. AVFrame *buf;
  124. av_fifo_generic_read(s->fifo, &buf, sizeof(buf), NULL);
  125. if (av_fifo_size(s->fifo)) {
  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_filter_frame(outlink, buf)) < 0)
  129. return ret;
  130. s->frames_out++;
  131. } else {
  132. /* This is the last frame, we may have to duplicate it to match
  133. * the last frame duration */
  134. int j;
  135. int eof_rounding = (s->eof_action == EOF_ACTION_PASS) ? AV_ROUND_UP : s->rounding;
  136. int delta = av_rescale_q_rnd(ctx->inputs[0]->current_pts - s->first_pts,
  137. ctx->inputs[0]->time_base,
  138. outlink->time_base, eof_rounding) - s->frames_out;
  139. av_log(ctx, AV_LOG_DEBUG, "EOF frames_out:%d delta:%d\n", s->frames_out, delta);
  140. /* if the delta is equal to 1, it means we just need to output
  141. * the last frame. Greater than 1 means we will need duplicate
  142. * delta-1 frames */
  143. if (delta > 0 ) {
  144. for (j = 0; j < delta; j++) {
  145. AVFrame *dup = av_frame_clone(buf);
  146. av_log(ctx, AV_LOG_DEBUG, "Duplicating frame.\n");
  147. dup->pts = av_rescale_q(s->first_pts, ctx->inputs[0]->time_base,
  148. outlink->time_base) + s->frames_out;
  149. if ((ret = ff_filter_frame(outlink, dup)) < 0)
  150. return ret;
  151. s->frames_out++;
  152. if (j > 0) s->dup++;
  153. }
  154. av_frame_free(&buf);
  155. } else {
  156. /* for delta less or equal to 0, we should drop the frame,
  157. * otherwise, we will have one or more extra frames */
  158. av_frame_free(&buf);
  159. s->drop++;
  160. }
  161. }
  162. }
  163. return 0;
  164. }
  165. return ret;
  166. }
  167. static int write_to_fifo(AVFifoBuffer *fifo, AVFrame *buf)
  168. {
  169. int ret;
  170. if (!av_fifo_space(fifo) &&
  171. (ret = av_fifo_realloc2(fifo, 2*av_fifo_size(fifo)))) {
  172. av_frame_free(&buf);
  173. return ret;
  174. }
  175. av_fifo_generic_write(fifo, &buf, sizeof(buf), NULL);
  176. return 0;
  177. }
  178. static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
  179. {
  180. AVFilterContext *ctx = inlink->dst;
  181. FPSContext *s = ctx->priv;
  182. AVFilterLink *outlink = ctx->outputs[0];
  183. int64_t delta;
  184. int i, ret;
  185. s->frames_in++;
  186. /* discard frames until we get the first timestamp */
  187. if (s->first_pts == AV_NOPTS_VALUE) {
  188. if (buf->pts != AV_NOPTS_VALUE) {
  189. ret = write_to_fifo(s->fifo, buf);
  190. if (ret < 0)
  191. return ret;
  192. if (s->start_time != DBL_MAX && s->start_time != AV_NOPTS_VALUE) {
  193. double first_pts = s->start_time * AV_TIME_BASE;
  194. first_pts = FFMIN(FFMAX(first_pts, INT64_MIN), INT64_MAX);
  195. s->first_pts = av_rescale_q(first_pts, AV_TIME_BASE_Q,
  196. inlink->time_base);
  197. av_log(ctx, AV_LOG_VERBOSE, "Set first pts to (in:%"PRId64" out:%"PRId64")\n",
  198. s->first_pts, av_rescale_q(first_pts, AV_TIME_BASE_Q,
  199. outlink->time_base));
  200. } else {
  201. s->first_pts = buf->pts;
  202. }
  203. } else {
  204. av_log(ctx, AV_LOG_WARNING, "Discarding initial frame(s) with no "
  205. "timestamp.\n");
  206. av_frame_free(&buf);
  207. s->drop++;
  208. }
  209. return 0;
  210. }
  211. /* now wait for the next timestamp */
  212. if (buf->pts == AV_NOPTS_VALUE || av_fifo_size(s->fifo) <= 0) {
  213. return write_to_fifo(s->fifo, buf);
  214. }
  215. /* number of output frames */
  216. delta = av_rescale_q_rnd(buf->pts - s->first_pts, inlink->time_base,
  217. outlink->time_base, s->rounding) - s->frames_out ;
  218. if (delta < 1) {
  219. /* drop everything buffered except the last */
  220. int drop = av_fifo_size(s->fifo)/sizeof(AVFrame*);
  221. av_log(ctx, AV_LOG_DEBUG, "Dropping %d frame(s).\n", drop);
  222. s->drop += drop;
  223. flush_fifo(s->fifo);
  224. ret = write_to_fifo(s->fifo, buf);
  225. return ret;
  226. }
  227. /* can output >= 1 frames */
  228. for (i = 0; i < delta; i++) {
  229. AVFrame *buf_out;
  230. av_fifo_generic_read(s->fifo, &buf_out, sizeof(buf_out), NULL);
  231. /* duplicate the frame if needed */
  232. if (!av_fifo_size(s->fifo) && i < delta - 1) {
  233. AVFrame *dup = av_frame_clone(buf_out);
  234. av_log(ctx, AV_LOG_DEBUG, "Duplicating frame.\n");
  235. if (dup)
  236. ret = write_to_fifo(s->fifo, dup);
  237. else
  238. ret = AVERROR(ENOMEM);
  239. if (ret < 0) {
  240. av_frame_free(&buf_out);
  241. av_frame_free(&buf);
  242. return ret;
  243. }
  244. s->dup++;
  245. }
  246. buf_out->pts = av_rescale_q(s->first_pts, inlink->time_base,
  247. outlink->time_base) + s->frames_out;
  248. if ((ret = ff_filter_frame(outlink, buf_out)) < 0) {
  249. av_frame_free(&buf);
  250. return ret;
  251. }
  252. s->frames_out++;
  253. }
  254. flush_fifo(s->fifo);
  255. ret = write_to_fifo(s->fifo, buf);
  256. return ret;
  257. }
  258. static const AVFilterPad avfilter_vf_fps_inputs[] = {
  259. {
  260. .name = "default",
  261. .type = AVMEDIA_TYPE_VIDEO,
  262. .filter_frame = filter_frame,
  263. },
  264. { NULL }
  265. };
  266. static const AVFilterPad avfilter_vf_fps_outputs[] = {
  267. {
  268. .name = "default",
  269. .type = AVMEDIA_TYPE_VIDEO,
  270. .request_frame = request_frame,
  271. .config_props = config_props
  272. },
  273. { NULL }
  274. };
  275. AVFilter ff_vf_fps = {
  276. .name = "fps",
  277. .description = NULL_IF_CONFIG_SMALL("Force constant framerate."),
  278. .init = init,
  279. .uninit = uninit,
  280. .priv_size = sizeof(FPSContext),
  281. .priv_class = &fps_class,
  282. .inputs = avfilter_vf_fps_inputs,
  283. .outputs = avfilter_vf_fps_outputs,
  284. };