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.

306 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 <stdint.h>
  24. #include "libavutil/common.h"
  25. #include "libavutil/fifo.h"
  26. #include "libavutil/mathematics.h"
  27. #include "libavutil/opt.h"
  28. #include "libavutil/parseutils.h"
  29. #include "avfilter.h"
  30. #include "internal.h"
  31. #include "video.h"
  32. typedef struct FPSContext {
  33. const AVClass *class;
  34. AVFifoBuffer *fifo; ///< store frames until we get two successive timestamps
  35. /* timestamps in input timebase */
  36. int64_t first_pts; ///< pts of the first frame that arrived on this filter
  37. int64_t pts; ///< pts of the first frame currently in the fifo
  38. double start_time; ///< pts, in seconds, of the expected first frame
  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. { "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 },
  52. { NULL },
  53. };
  54. static const AVClass class = {
  55. .class_name = "FPS filter",
  56. .item_name = av_default_item_name,
  57. .option = options,
  58. .version = LIBAVUTIL_VERSION_INT,
  59. };
  60. static av_cold int init(AVFilterContext *ctx)
  61. {
  62. FPSContext *s = ctx->priv;
  63. int ret;
  64. if ((ret = av_parse_video_rate(&s->framerate, s->fps)) < 0) {
  65. av_log(ctx, AV_LOG_ERROR, "Error parsing framerate %s.\n", s->fps);
  66. return ret;
  67. }
  68. if (!(s->fifo = av_fifo_alloc(2*sizeof(AVFrame*))))
  69. return AVERROR(ENOMEM);
  70. s->pts = AV_NOPTS_VALUE;
  71. s->first_pts = AV_NOPTS_VALUE;
  72. av_log(ctx, AV_LOG_VERBOSE, "fps=%d/%d\n", s->framerate.num, s->framerate.den);
  73. return 0;
  74. }
  75. static void flush_fifo(AVFifoBuffer *fifo)
  76. {
  77. while (av_fifo_size(fifo)) {
  78. AVFrame *tmp;
  79. av_fifo_generic_read(fifo, &tmp, sizeof(tmp), NULL);
  80. av_frame_free(&tmp);
  81. }
  82. }
  83. static av_cold void uninit(AVFilterContext *ctx)
  84. {
  85. FPSContext *s = ctx->priv;
  86. if (s->fifo) {
  87. s->drop += av_fifo_size(s->fifo) / sizeof(AVFilterBufferRef*);
  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 = (AVRational){ s->framerate.den, s->framerate.num };
  98. link->w = link->src->inputs[0]->w;
  99. link->h = link->src->inputs[0]->h;
  100. return 0;
  101. }
  102. static int request_frame(AVFilterLink *outlink)
  103. {
  104. AVFilterContext *ctx = outlink->src;
  105. FPSContext *s = ctx->priv;
  106. int frames_out = s->frames_out;
  107. int ret = 0;
  108. while (ret >= 0 && s->frames_out == frames_out)
  109. ret = ff_request_frame(ctx->inputs[0]);
  110. /* flush the fifo */
  111. if (ret == AVERROR_EOF && av_fifo_size(s->fifo)) {
  112. int i;
  113. for (i = 0; av_fifo_size(s->fifo); i++) {
  114. AVFrame *buf;
  115. av_fifo_generic_read(s->fifo, &buf, sizeof(buf), NULL);
  116. buf->pts = av_rescale_q(s->first_pts, ctx->inputs[0]->time_base,
  117. outlink->time_base) + s->frames_out;
  118. if ((ret = ff_filter_frame(outlink, buf)) < 0)
  119. return ret;
  120. s->frames_out++;
  121. }
  122. return 0;
  123. }
  124. return ret;
  125. }
  126. static int write_to_fifo(AVFifoBuffer *fifo, AVFrame *buf)
  127. {
  128. int ret;
  129. if (!av_fifo_space(fifo) &&
  130. (ret = av_fifo_realloc2(fifo, 2*av_fifo_size(fifo)))) {
  131. av_frame_free(&buf);
  132. return ret;
  133. }
  134. av_fifo_generic_write(fifo, &buf, sizeof(buf), NULL);
  135. return 0;
  136. }
  137. static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
  138. {
  139. AVFilterContext *ctx = inlink->dst;
  140. FPSContext *s = ctx->priv;
  141. AVFilterLink *outlink = ctx->outputs[0];
  142. int64_t delta;
  143. int i, ret;
  144. s->frames_in++;
  145. /* discard frames until we get the first timestamp */
  146. if (s->pts == AV_NOPTS_VALUE) {
  147. if (buf->pts != AV_NOPTS_VALUE) {
  148. ret = write_to_fifo(s->fifo, buf);
  149. if (ret < 0)
  150. return ret;
  151. if (s->start_time != DBL_MAX) {
  152. double first_pts = s->start_time * AV_TIME_BASE;
  153. first_pts = FFMIN(FFMAX(first_pts, INT64_MIN), INT64_MAX);
  154. s->first_pts = s->pts = av_rescale_q(first_pts, AV_TIME_BASE_Q,
  155. inlink->time_base);
  156. av_log(ctx, AV_LOG_VERBOSE, "Set first pts to (in:%"PRId64" out:%"PRId64")\n",
  157. s->first_pts, av_rescale_q(first_pts, AV_TIME_BASE_Q,
  158. outlink->time_base));
  159. } else {
  160. s->first_pts = s->pts = buf->pts;
  161. }
  162. } else {
  163. av_log(ctx, AV_LOG_WARNING, "Discarding initial frame(s) with no "
  164. "timestamp.\n");
  165. av_frame_free(&buf);
  166. s->drop++;
  167. }
  168. return 0;
  169. }
  170. /* now wait for the next timestamp */
  171. if (buf->pts == AV_NOPTS_VALUE) {
  172. return write_to_fifo(s->fifo, buf);
  173. }
  174. /* number of output frames */
  175. delta = av_rescale_q(buf->pts - s->pts, inlink->time_base,
  176. outlink->time_base);
  177. if (delta < 1) {
  178. /* drop the frame and everything buffered except the first */
  179. AVFrame *tmp;
  180. int drop = av_fifo_size(s->fifo)/sizeof(AVFrame*);
  181. av_log(ctx, AV_LOG_DEBUG, "Dropping %d frame(s).\n", drop);
  182. s->drop += drop;
  183. av_fifo_generic_read(s->fifo, &tmp, sizeof(tmp), NULL);
  184. flush_fifo(s->fifo);
  185. ret = write_to_fifo(s->fifo, tmp);
  186. av_frame_free(&buf);
  187. return ret;
  188. }
  189. /* can output >= 1 frames */
  190. for (i = 0; i < delta; i++) {
  191. AVFrame *buf_out;
  192. av_fifo_generic_read(s->fifo, &buf_out, sizeof(buf_out), NULL);
  193. /* duplicate the frame if needed */
  194. if (!av_fifo_size(s->fifo) && i < delta - 1) {
  195. AVFrame *dup = av_frame_clone(buf_out);
  196. av_log(ctx, AV_LOG_DEBUG, "Duplicating frame.\n");
  197. if (dup)
  198. ret = write_to_fifo(s->fifo, dup);
  199. else
  200. ret = AVERROR(ENOMEM);
  201. if (ret < 0) {
  202. av_frame_free(&buf_out);
  203. av_frame_free(&buf);
  204. return ret;
  205. }
  206. s->dup++;
  207. }
  208. buf_out->pts = av_rescale_q(s->first_pts, inlink->time_base,
  209. outlink->time_base) + s->frames_out;
  210. if ((ret = ff_filter_frame(outlink, buf_out)) < 0) {
  211. av_frame_free(&buf);
  212. return ret;
  213. }
  214. s->frames_out++;
  215. }
  216. flush_fifo(s->fifo);
  217. ret = write_to_fifo(s->fifo, buf);
  218. s->pts = s->first_pts + av_rescale_q(s->frames_out, outlink->time_base, inlink->time_base);
  219. return ret;
  220. }
  221. static const AVFilterPad avfilter_vf_fps_inputs[] = {
  222. {
  223. .name = "default",
  224. .type = AVMEDIA_TYPE_VIDEO,
  225. .filter_frame = filter_frame,
  226. },
  227. { NULL }
  228. };
  229. static const AVFilterPad avfilter_vf_fps_outputs[] = {
  230. {
  231. .name = "default",
  232. .type = AVMEDIA_TYPE_VIDEO,
  233. .request_frame = request_frame,
  234. .config_props = config_props
  235. },
  236. { NULL }
  237. };
  238. AVFilter ff_vf_fps = {
  239. .name = "fps",
  240. .description = NULL_IF_CONFIG_SMALL("Force constant framerate"),
  241. .init = init,
  242. .uninit = uninit,
  243. .priv_size = sizeof(FPSContext),
  244. .priv_class = &class,
  245. .inputs = avfilter_vf_fps_inputs,
  246. .outputs = avfilter_vf_fps_outputs,
  247. };