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.

296 lines
8.3KB

  1. /*
  2. * This file is part of Libav.
  3. *
  4. * Libav is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * Libav is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with Libav; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. /**
  19. * @file
  20. * a filter enforcing given constant framerate
  21. */
  22. #include "libavutil/common.h"
  23. #include "libavutil/fifo.h"
  24. #include "libavutil/mathematics.h"
  25. #include "libavutil/opt.h"
  26. #include "libavutil/parseutils.h"
  27. #include "avfilter.h"
  28. #include "internal.h"
  29. #include "video.h"
  30. typedef struct FPSContext {
  31. const AVClass *class;
  32. AVFifoBuffer *fifo; ///< store frames until we get two successive timestamps
  33. /* timestamps in input timebase */
  34. int64_t first_pts; ///< pts of the first frame that arrived on this filter
  35. int64_t pts; ///< pts of the first frame currently in the fifo
  36. AVRational framerate; ///< target framerate
  37. char *fps; ///< a string describing target framerate
  38. /* statistics */
  39. int frames_in; ///< number of frames on input
  40. int frames_out; ///< number of frames on output
  41. int dup; ///< number of frames duplicated
  42. int drop; ///< number of framed dropped
  43. } FPSContext;
  44. #define OFFSET(x) offsetof(FPSContext, x)
  45. #define V AV_OPT_FLAG_VIDEO_PARAM
  46. static const AVOption options[] = {
  47. { "fps", "A string describing desired output framerate", OFFSET(fps), AV_OPT_TYPE_STRING, { .str = "25" }, .flags = V },
  48. { NULL },
  49. };
  50. static const AVClass class = {
  51. .class_name = "FPS filter",
  52. .item_name = av_default_item_name,
  53. .option = options,
  54. .version = LIBAVUTIL_VERSION_INT,
  55. };
  56. static av_cold int init(AVFilterContext *ctx, const char *args)
  57. {
  58. FPSContext *s = ctx->priv;
  59. int ret;
  60. s->class = &class;
  61. av_opt_set_defaults(s);
  62. if ((ret = av_set_options_string(s, args, "=", ":")) < 0) {
  63. av_log(ctx, AV_LOG_ERROR, "Error parsing the options string %s.\n",
  64. args);
  65. return ret;
  66. }
  67. if ((ret = av_parse_video_rate(&s->framerate, s->fps)) < 0) {
  68. av_log(ctx, AV_LOG_ERROR, "Error parsing framerate %s.\n", s->fps);
  69. return ret;
  70. }
  71. av_opt_free(s);
  72. if (!(s->fifo = av_fifo_alloc(2*sizeof(AVFilterBufferRef*))))
  73. return AVERROR(ENOMEM);
  74. av_log(ctx, AV_LOG_VERBOSE, "fps=%d/%d\n", s->framerate.num, s->framerate.den);
  75. return 0;
  76. }
  77. static void flush_fifo(AVFifoBuffer *fifo)
  78. {
  79. while (av_fifo_size(fifo)) {
  80. AVFilterBufferRef *tmp;
  81. av_fifo_generic_read(fifo, &tmp, sizeof(tmp), NULL);
  82. avfilter_unref_buffer(tmp);
  83. }
  84. }
  85. static av_cold void uninit(AVFilterContext *ctx)
  86. {
  87. FPSContext *s = ctx->priv;
  88. if (s->fifo) {
  89. flush_fifo(s->fifo);
  90. av_fifo_free(s->fifo);
  91. }
  92. av_log(ctx, AV_LOG_VERBOSE, "%d frames in, %d frames out; %d frames dropped, "
  93. "%d frames duplicated.\n", s->frames_in, s->frames_out, s->drop, s->dup);
  94. }
  95. static int config_props(AVFilterLink* link)
  96. {
  97. FPSContext *s = link->src->priv;
  98. link->time_base = (AVRational){ s->framerate.den, s->framerate.num };
  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_filter_frame(outlink, buf)) < 0)
  121. return ret;
  122. s->frames_out++;
  123. }
  124. return 0;
  125. }
  126. return ret;
  127. }
  128. static int write_to_fifo(AVFifoBuffer *fifo, AVFilterBufferRef *buf)
  129. {
  130. int ret;
  131. if (!av_fifo_space(fifo) &&
  132. (ret = av_fifo_realloc2(fifo, 2*av_fifo_size(fifo)))) {
  133. avfilter_unref_bufferp(&buf);
  134. return ret;
  135. }
  136. av_fifo_generic_write(fifo, &buf, sizeof(buf), NULL);
  137. return 0;
  138. }
  139. static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *buf)
  140. {
  141. AVFilterContext *ctx = inlink->dst;
  142. FPSContext *s = ctx->priv;
  143. AVFilterLink *outlink = ctx->outputs[0];
  144. int64_t delta;
  145. int i, ret;
  146. s->frames_in++;
  147. /* discard frames until we get the first timestamp */
  148. if (s->pts == AV_NOPTS_VALUE) {
  149. if (buf->pts != AV_NOPTS_VALUE) {
  150. ret = write_to_fifo(s->fifo, buf);
  151. if (ret < 0)
  152. return ret;
  153. s->first_pts = s->pts = buf->pts;
  154. } else {
  155. av_log(ctx, AV_LOG_WARNING, "Discarding initial frame(s) with no "
  156. "timestamp.\n");
  157. avfilter_unref_buffer(buf);
  158. s->drop++;
  159. }
  160. return 0;
  161. }
  162. /* now wait for the next timestamp */
  163. if (buf->pts == AV_NOPTS_VALUE) {
  164. return write_to_fifo(s->fifo, buf);
  165. }
  166. /* number of output frames */
  167. delta = av_rescale_q(buf->pts - s->pts, inlink->time_base,
  168. outlink->time_base);
  169. if (delta < 1) {
  170. /* drop the frame and everything buffered except the first */
  171. AVFilterBufferRef *tmp;
  172. int drop = av_fifo_size(s->fifo)/sizeof(AVFilterBufferRef*);
  173. av_log(ctx, AV_LOG_DEBUG, "Dropping %d frame(s).\n", drop);
  174. s->drop += drop;
  175. av_fifo_generic_read(s->fifo, &tmp, sizeof(tmp), NULL);
  176. flush_fifo(s->fifo);
  177. ret = write_to_fifo(s->fifo, tmp);
  178. avfilter_unref_buffer(buf);
  179. return ret;
  180. }
  181. /* can output >= 1 frames */
  182. for (i = 0; i < delta; i++) {
  183. AVFilterBufferRef *buf_out;
  184. av_fifo_generic_read(s->fifo, &buf_out, sizeof(buf_out), NULL);
  185. /* duplicate the frame if needed */
  186. if (!av_fifo_size(s->fifo) && i < delta - 1) {
  187. AVFilterBufferRef *dup = avfilter_ref_buffer(buf_out, AV_PERM_READ);
  188. av_log(ctx, AV_LOG_DEBUG, "Duplicating frame.\n");
  189. if (dup)
  190. ret = write_to_fifo(s->fifo, dup);
  191. else
  192. ret = AVERROR(ENOMEM);
  193. if (ret < 0) {
  194. avfilter_unref_bufferp(&buf_out);
  195. avfilter_unref_bufferp(&buf);
  196. return ret;
  197. }
  198. s->dup++;
  199. }
  200. buf_out->pts = av_rescale_q(s->first_pts, inlink->time_base,
  201. outlink->time_base) + s->frames_out;
  202. if ((ret = ff_filter_frame(outlink, buf_out)) < 0) {
  203. avfilter_unref_bufferp(&buf);
  204. return ret;
  205. }
  206. s->frames_out++;
  207. }
  208. flush_fifo(s->fifo);
  209. ret = write_to_fifo(s->fifo, buf);
  210. s->pts = s->first_pts + av_rescale_q(s->frames_out, outlink->time_base, inlink->time_base);
  211. return ret;
  212. }
  213. static const AVFilterPad avfilter_vf_fps_inputs[] = {
  214. {
  215. .name = "default",
  216. .type = AVMEDIA_TYPE_VIDEO,
  217. .filter_frame = filter_frame,
  218. },
  219. { NULL }
  220. };
  221. static const AVFilterPad avfilter_vf_fps_outputs[] = {
  222. {
  223. .name = "default",
  224. .type = AVMEDIA_TYPE_VIDEO,
  225. .request_frame = request_frame,
  226. .config_props = config_props
  227. },
  228. { NULL }
  229. };
  230. AVFilter avfilter_vf_fps = {
  231. .name = "fps",
  232. .description = NULL_IF_CONFIG_SMALL("Force constant framerate"),
  233. .init = init,
  234. .uninit = uninit,
  235. .priv_size = sizeof(FPSContext),
  236. .inputs = avfilter_vf_fps_inputs,
  237. .outputs = avfilter_vf_fps_outputs,
  238. };