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.

302 lines
9.1KB

  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. /* 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. static const AVOption fps_options[] = {
  51. { "fps", "A string describing desired output framerate", OFFSET(fps), AV_OPT_TYPE_STRING, { .str = "25" }, .flags = V },
  52. { NULL },
  53. };
  54. AVFILTER_DEFINE_CLASS(fps);
  55. static av_cold int init(AVFilterContext *ctx, const char *args)
  56. {
  57. FPSContext *s = ctx->priv;
  58. int ret;
  59. s->class = &fps_class;
  60. av_opt_set_defaults(s);
  61. if ((ret = av_set_options_string(s, args, "=", ":")) < 0) {
  62. av_log(ctx, AV_LOG_ERROR, "Error parsing the options string %s.\n",
  63. args);
  64. return ret;
  65. }
  66. if ((ret = av_parse_video_rate(&s->framerate, s->fps)) < 0) {
  67. av_log(ctx, AV_LOG_ERROR, "Error parsing framerate %s.\n", s->fps);
  68. return ret;
  69. }
  70. av_opt_free(s);
  71. if (!(s->fifo = av_fifo_alloc(2*sizeof(AVFilterBufferRef*))))
  72. return AVERROR(ENOMEM);
  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. AVFilterBufferRef *tmp;
  80. av_fifo_generic_read(fifo, &tmp, sizeof(tmp), NULL);
  81. avfilter_unref_buffer(tmp);
  82. }
  83. }
  84. static av_cold void uninit(AVFilterContext *ctx)
  85. {
  86. FPSContext *s = ctx->priv;
  87. if (s->fifo) {
  88. flush_fifo(s->fifo);
  89. av_fifo_free(s->fifo);
  90. }
  91. av_log(ctx, AV_LOG_VERBOSE, "%d frames in, %d frames out; %d frames dropped, "
  92. "%d frames duplicated.\n", s->frames_in, s->frames_out, s->drop, s->dup);
  93. }
  94. static int config_props(AVFilterLink* link)
  95. {
  96. FPSContext *s = link->src->priv;
  97. link->time_base = av_inv_q(s->framerate);
  98. link->frame_rate= s->framerate;
  99. link->w = link->src->inputs[0]->w;
  100. link->h = link->src->inputs[0]->h;
  101. s->pts = AV_NOPTS_VALUE;
  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. AVFilterBufferRef *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_start_frame(outlink, buf)) < 0 ||
  121. (ret = ff_draw_slice(outlink, 0, outlink->h, 1)) < 0 ||
  122. (ret = ff_end_frame(outlink)) < 0)
  123. return ret;
  124. s->frames_out++;
  125. }
  126. return 0;
  127. }
  128. return ret;
  129. }
  130. static int write_to_fifo(AVFifoBuffer *fifo, AVFilterBufferRef *buf)
  131. {
  132. int ret;
  133. if (!av_fifo_space(fifo) &&
  134. (ret = av_fifo_realloc2(fifo, 2*av_fifo_size(fifo)))) {
  135. avfilter_unref_bufferp(&buf);
  136. return ret;
  137. }
  138. av_fifo_generic_write(fifo, &buf, sizeof(buf), NULL);
  139. return 0;
  140. }
  141. static int end_frame(AVFilterLink *inlink)
  142. {
  143. AVFilterContext *ctx = inlink->dst;
  144. FPSContext *s = ctx->priv;
  145. AVFilterLink *outlink = ctx->outputs[0];
  146. AVFilterBufferRef *buf = inlink->cur_buf;
  147. int64_t delta;
  148. int i, ret;
  149. inlink->cur_buf = NULL;
  150. s->frames_in++;
  151. /* discard frames until we get the first timestamp */
  152. if (s->pts == AV_NOPTS_VALUE) {
  153. if (buf->pts != AV_NOPTS_VALUE) {
  154. ret = write_to_fifo(s->fifo, buf);
  155. if (ret < 0)
  156. return ret;
  157. s->first_pts = s->pts = buf->pts;
  158. } else {
  159. av_log(ctx, AV_LOG_WARNING, "Discarding initial frame(s) with no "
  160. "timestamp.\n");
  161. avfilter_unref_buffer(buf);
  162. s->drop++;
  163. }
  164. return 0;
  165. }
  166. /* now wait for the next timestamp */
  167. if (buf->pts == AV_NOPTS_VALUE) {
  168. return write_to_fifo(s->fifo, buf);
  169. }
  170. /* number of output frames */
  171. delta = av_rescale_q(buf->pts - s->pts, inlink->time_base,
  172. outlink->time_base);
  173. if (delta < 1) {
  174. /* drop the frame and everything buffered except the first */
  175. AVFilterBufferRef *tmp;
  176. int drop = av_fifo_size(s->fifo)/sizeof(AVFilterBufferRef*);
  177. av_log(ctx, AV_LOG_DEBUG, "Dropping %d frame(s).\n", drop);
  178. s->drop += drop;
  179. av_fifo_generic_read(s->fifo, &tmp, sizeof(tmp), NULL);
  180. flush_fifo(s->fifo);
  181. ret = write_to_fifo(s->fifo, tmp);
  182. avfilter_unref_buffer(buf);
  183. return ret;
  184. }
  185. /* can output >= 1 frames */
  186. for (i = 0; i < delta; i++) {
  187. AVFilterBufferRef *buf_out;
  188. av_fifo_generic_read(s->fifo, &buf_out, sizeof(buf_out), NULL);
  189. /* duplicate the frame if needed */
  190. if (!av_fifo_size(s->fifo) && i < delta - 1) {
  191. AVFilterBufferRef *dup = avfilter_ref_buffer(buf_out, AV_PERM_READ);
  192. av_log(ctx, AV_LOG_DEBUG, "Duplicating frame.\n");
  193. if (dup)
  194. ret = write_to_fifo(s->fifo, dup);
  195. else
  196. ret = AVERROR(ENOMEM);
  197. if (ret < 0) {
  198. avfilter_unref_bufferp(&buf_out);
  199. avfilter_unref_bufferp(&buf);
  200. return ret;
  201. }
  202. s->dup++;
  203. }
  204. buf_out->pts = av_rescale_q(s->first_pts, inlink->time_base,
  205. outlink->time_base) + s->frames_out;
  206. if ((ret = ff_start_frame(outlink, buf_out)) < 0 ||
  207. (ret = ff_draw_slice(outlink, 0, outlink->h, 1)) < 0 ||
  208. (ret = ff_end_frame(outlink)) < 0) {
  209. avfilter_unref_bufferp(&buf);
  210. return ret;
  211. }
  212. s->frames_out++;
  213. }
  214. flush_fifo(s->fifo);
  215. ret = write_to_fifo(s->fifo, buf);
  216. s->pts = s->first_pts + av_rescale_q(s->frames_out, outlink->time_base, inlink->time_base);
  217. return ret;
  218. }
  219. static int null_start_frame(AVFilterLink *link, AVFilterBufferRef *buf)
  220. {
  221. return 0;
  222. }
  223. static int null_draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
  224. {
  225. return 0;
  226. }
  227. AVFilter avfilter_vf_fps = {
  228. .name = "fps",
  229. .description = NULL_IF_CONFIG_SMALL("Force constant framerate"),
  230. .init = init,
  231. .uninit = uninit,
  232. .priv_size = sizeof(FPSContext),
  233. .inputs = (const AVFilterPad[]) {{ .name = "default",
  234. .type = AVMEDIA_TYPE_VIDEO,
  235. .start_frame = null_start_frame,
  236. .draw_slice = null_draw_slice,
  237. .end_frame = end_frame, },
  238. { .name = NULL}},
  239. .outputs = (const AVFilterPad[]) {{ .name = "default",
  240. .type = AVMEDIA_TYPE_VIDEO,
  241. .request_frame = request_frame,
  242. .config_props = config_props},
  243. { .name = NULL}},
  244. };