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.

305 lines
8.9KB

  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 <float.h>
  23. #include "libavutil/common.h"
  24. #include "libavutil/fifo.h"
  25. #include "libavutil/mathematics.h"
  26. #include "libavutil/opt.h"
  27. #include "libavutil/parseutils.h"
  28. #include "avfilter.h"
  29. #include "internal.h"
  30. #include "video.h"
  31. typedef struct FPSContext {
  32. const AVClass *class;
  33. AVFifoBuffer *fifo; ///< store frames until we get two successive timestamps
  34. /* timestamps in input timebase */
  35. int64_t first_pts; ///< pts of the first frame that arrived on this filter
  36. int64_t pts; ///< pts of the first frame currently in the fifo
  37. double start_time; ///< pts, in seconds, of the expected first frame
  38. AVRational framerate; ///< target framerate
  39. char *fps; ///< a string describing target framerate
  40. /* statistics */
  41. int frames_in; ///< number of frames on input
  42. int frames_out; ///< number of frames on output
  43. int dup; ///< number of frames duplicated
  44. int drop; ///< number of framed dropped
  45. } FPSContext;
  46. #define OFFSET(x) offsetof(FPSContext, x)
  47. #define V AV_OPT_FLAG_VIDEO_PARAM
  48. static const AVOption options[] = {
  49. { "fps", "A string describing desired output framerate", OFFSET(fps), AV_OPT_TYPE_STRING, { .str = "25" }, .flags = V },
  50. { "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 },
  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)
  60. {
  61. FPSContext *s = ctx->priv;
  62. int ret;
  63. if ((ret = av_parse_video_rate(&s->framerate, s->fps)) < 0) {
  64. av_log(ctx, AV_LOG_ERROR, "Error parsing framerate %s.\n", s->fps);
  65. return ret;
  66. }
  67. if (!(s->fifo = av_fifo_alloc(2*sizeof(AVFrame*))))
  68. return AVERROR(ENOMEM);
  69. s->pts = AV_NOPTS_VALUE;
  70. s->first_pts = AV_NOPTS_VALUE;
  71. av_log(ctx, AV_LOG_VERBOSE, "fps=%d/%d\n", s->framerate.num, s->framerate.den);
  72. return 0;
  73. }
  74. static void flush_fifo(AVFifoBuffer *fifo)
  75. {
  76. while (av_fifo_size(fifo)) {
  77. AVFrame *tmp;
  78. av_fifo_generic_read(fifo, &tmp, sizeof(tmp), NULL);
  79. av_frame_free(&tmp);
  80. }
  81. }
  82. static av_cold void uninit(AVFilterContext *ctx)
  83. {
  84. FPSContext *s = ctx->priv;
  85. if (s->fifo) {
  86. s->drop += av_fifo_size(s->fifo) / sizeof(AVFilterBufferRef*);
  87. flush_fifo(s->fifo);
  88. av_fifo_free(s->fifo);
  89. }
  90. av_log(ctx, AV_LOG_VERBOSE, "%d frames in, %d frames out; %d frames dropped, "
  91. "%d frames duplicated.\n", s->frames_in, s->frames_out, s->drop, s->dup);
  92. }
  93. static int config_props(AVFilterLink* link)
  94. {
  95. FPSContext *s = link->src->priv;
  96. link->time_base = (AVRational){ s->framerate.den, s->framerate.num };
  97. link->w = link->src->inputs[0]->w;
  98. link->h = link->src->inputs[0]->h;
  99. return 0;
  100. }
  101. static int request_frame(AVFilterLink *outlink)
  102. {
  103. AVFilterContext *ctx = outlink->src;
  104. FPSContext *s = ctx->priv;
  105. int frames_out = s->frames_out;
  106. int ret = 0;
  107. while (ret >= 0 && s->frames_out == frames_out)
  108. ret = ff_request_frame(ctx->inputs[0]);
  109. /* flush the fifo */
  110. if (ret == AVERROR_EOF && av_fifo_size(s->fifo)) {
  111. int i;
  112. for (i = 0; av_fifo_size(s->fifo); i++) {
  113. AVFrame *buf;
  114. av_fifo_generic_read(s->fifo, &buf, sizeof(buf), NULL);
  115. buf->pts = av_rescale_q(s->first_pts, ctx->inputs[0]->time_base,
  116. outlink->time_base) + s->frames_out;
  117. if ((ret = ff_filter_frame(outlink, buf)) < 0)
  118. return ret;
  119. s->frames_out++;
  120. }
  121. return 0;
  122. }
  123. return ret;
  124. }
  125. static int write_to_fifo(AVFifoBuffer *fifo, AVFrame *buf)
  126. {
  127. int ret;
  128. if (!av_fifo_space(fifo) &&
  129. (ret = av_fifo_realloc2(fifo, 2*av_fifo_size(fifo)))) {
  130. av_frame_free(&buf);
  131. return ret;
  132. }
  133. av_fifo_generic_write(fifo, &buf, sizeof(buf), NULL);
  134. return 0;
  135. }
  136. static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
  137. {
  138. AVFilterContext *ctx = inlink->dst;
  139. FPSContext *s = ctx->priv;
  140. AVFilterLink *outlink = ctx->outputs[0];
  141. int64_t delta;
  142. int i, ret;
  143. s->frames_in++;
  144. /* discard frames until we get the first timestamp */
  145. if (s->pts == AV_NOPTS_VALUE) {
  146. if (buf->pts != AV_NOPTS_VALUE) {
  147. ret = write_to_fifo(s->fifo, buf);
  148. if (ret < 0)
  149. return ret;
  150. if (s->start_time != DBL_MAX) {
  151. double first_pts = s->start_time * AV_TIME_BASE;
  152. first_pts = FFMIN(FFMAX(first_pts, INT64_MIN), INT64_MAX);
  153. s->first_pts = s->pts = av_rescale_q(first_pts, AV_TIME_BASE_Q,
  154. inlink->time_base);
  155. av_log(ctx, AV_LOG_VERBOSE, "Set first pts to (in:%"PRId64" out:%"PRId64")\n",
  156. s->first_pts, av_rescale_q(first_pts, AV_TIME_BASE_Q,
  157. outlink->time_base));
  158. } else {
  159. s->first_pts = s->pts = buf->pts;
  160. }
  161. } else {
  162. av_log(ctx, AV_LOG_WARNING, "Discarding initial frame(s) with no "
  163. "timestamp.\n");
  164. av_frame_free(&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(buf->pts - s->pts, inlink->time_base,
  175. outlink->time_base);
  176. if (delta < 1) {
  177. /* drop the frame and everything buffered except the first */
  178. AVFrame *tmp;
  179. int drop = av_fifo_size(s->fifo)/sizeof(AVFrame*);
  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. av_frame_free(&buf);
  186. return ret;
  187. }
  188. /* can output >= 1 frames */
  189. for (i = 0; i < delta; i++) {
  190. AVFrame *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. AVFrame *dup = av_frame_clone(buf_out);
  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. av_frame_free(&buf_out);
  202. av_frame_free(&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. av_frame_free(&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. .filter_frame = filter_frame,
  225. },
  226. { NULL }
  227. };
  228. static const AVFilterPad avfilter_vf_fps_outputs[] = {
  229. {
  230. .name = "default",
  231. .type = AVMEDIA_TYPE_VIDEO,
  232. .request_frame = request_frame,
  233. .config_props = config_props
  234. },
  235. { NULL }
  236. };
  237. AVFilter ff_vf_fps = {
  238. .name = "fps",
  239. .description = NULL_IF_CONFIG_SMALL("Force constant framerate"),
  240. .init = init,
  241. .uninit = uninit,
  242. .priv_size = sizeof(FPSContext),
  243. .priv_class = &class,
  244. .inputs = avfilter_vf_fps_inputs,
  245. .outputs = avfilter_vf_fps_outputs,
  246. };