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.

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