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.

188 lines
5.7KB

  1. /*
  2. * Copyright (c) 2008 Vitor Sessak
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * Libav is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with Libav; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file
  22. * memory buffer source filter
  23. */
  24. #include "avfilter.h"
  25. #include "buffersrc.h"
  26. #include "vsrc_buffer.h"
  27. #include "libavutil/imgutils.h"
  28. typedef struct {
  29. AVFilterBufferRef *buf;
  30. int h, w;
  31. enum PixelFormat pix_fmt;
  32. AVRational time_base; ///< time_base to set in the output link
  33. AVRational pixel_aspect;
  34. } BufferSourceContext;
  35. #define CHECK_PARAM_CHANGE(s, c, width, height, format)\
  36. if (c->w != width || c->h != height || c->pix_fmt != format) {\
  37. av_log(s, AV_LOG_ERROR, "Changing frame properties on the fly is not supported.\n");\
  38. return AVERROR(EINVAL);\
  39. }
  40. int av_vsrc_buffer_add_frame(AVFilterContext *buffer_filter, AVFrame *frame,
  41. int64_t pts, AVRational pixel_aspect)
  42. {
  43. BufferSourceContext *c = buffer_filter->priv;
  44. if (c->buf) {
  45. av_log(buffer_filter, AV_LOG_ERROR,
  46. "Buffering several frames is not supported. "
  47. "Please consume all available frames before adding a new one.\n"
  48. );
  49. //return -1;
  50. }
  51. CHECK_PARAM_CHANGE(buffer_filter, c, frame->width, frame->height, frame->format);
  52. c->buf = avfilter_get_video_buffer(buffer_filter->outputs[0], AV_PERM_WRITE,
  53. c->w, c->h);
  54. av_image_copy(c->buf->data, c->buf->linesize, frame->data, frame->linesize,
  55. c->pix_fmt, c->w, c->h);
  56. avfilter_copy_frame_props(c->buf, frame);
  57. c->buf->pts = pts;
  58. c->buf->video->pixel_aspect = pixel_aspect;
  59. return 0;
  60. }
  61. int av_buffersrc_buffer(AVFilterContext *s, AVFilterBufferRef *buf)
  62. {
  63. BufferSourceContext *c = s->priv;
  64. if (c->buf) {
  65. av_log(s, AV_LOG_ERROR,
  66. "Buffering several frames is not supported. "
  67. "Please consume all available frames before adding a new one.\n"
  68. );
  69. return AVERROR(EINVAL);
  70. }
  71. CHECK_PARAM_CHANGE(s, c, buf->video->w, buf->video->h, buf->format);
  72. c->buf = buf;
  73. return 0;
  74. }
  75. static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
  76. {
  77. BufferSourceContext *c = ctx->priv;
  78. char pix_fmt_str[128];
  79. int n = 0;
  80. if (!args ||
  81. (n = sscanf(args, "%d:%d:%127[^:]:%d:%d:%d:%d", &c->w, &c->h, pix_fmt_str,
  82. &c->time_base.num, &c->time_base.den,
  83. &c->pixel_aspect.num, &c->pixel_aspect.den)) != 7) {
  84. av_log(ctx, AV_LOG_ERROR, "Expected 7 arguments, but %d found in '%s'\n", n, args);
  85. return AVERROR(EINVAL);
  86. }
  87. if ((c->pix_fmt = av_get_pix_fmt(pix_fmt_str)) == PIX_FMT_NONE) {
  88. char *tail;
  89. c->pix_fmt = strtol(pix_fmt_str, &tail, 10);
  90. if (*tail || c->pix_fmt < 0 || c->pix_fmt >= PIX_FMT_NB) {
  91. av_log(ctx, AV_LOG_ERROR, "Invalid pixel format string '%s'\n", pix_fmt_str);
  92. return AVERROR(EINVAL);
  93. }
  94. }
  95. av_log(ctx, AV_LOG_INFO, "w:%d h:%d pixfmt:%s\n", c->w, c->h, av_pix_fmt_descriptors[c->pix_fmt].name);
  96. return 0;
  97. }
  98. static av_cold void uninit(AVFilterContext *ctx)
  99. {
  100. BufferSourceContext *s = ctx->priv;
  101. if (s->buf)
  102. avfilter_unref_buffer(s->buf);
  103. s->buf = NULL;
  104. }
  105. static int query_formats(AVFilterContext *ctx)
  106. {
  107. BufferSourceContext *c = ctx->priv;
  108. enum PixelFormat pix_fmts[] = { c->pix_fmt, PIX_FMT_NONE };
  109. avfilter_set_common_formats(ctx, avfilter_make_format_list(pix_fmts));
  110. return 0;
  111. }
  112. static int config_props(AVFilterLink *link)
  113. {
  114. BufferSourceContext *c = link->src->priv;
  115. link->w = c->w;
  116. link->h = c->h;
  117. link->sample_aspect_ratio = c->pixel_aspect;
  118. link->time_base = c->time_base;
  119. return 0;
  120. }
  121. static int request_frame(AVFilterLink *link)
  122. {
  123. BufferSourceContext *c = link->src->priv;
  124. if (!c->buf) {
  125. av_log(link->src, AV_LOG_ERROR,
  126. "request_frame() called with no available frame!\n");
  127. //return -1;
  128. }
  129. avfilter_start_frame(link, avfilter_ref_buffer(c->buf, ~0));
  130. avfilter_draw_slice(link, 0, link->h, 1);
  131. avfilter_end_frame(link);
  132. avfilter_unref_buffer(c->buf);
  133. c->buf = NULL;
  134. return 0;
  135. }
  136. static int poll_frame(AVFilterLink *link)
  137. {
  138. BufferSourceContext *c = link->src->priv;
  139. return !!c->buf;
  140. }
  141. AVFilter avfilter_vsrc_buffer = {
  142. .name = "buffer",
  143. .description = NULL_IF_CONFIG_SMALL("Buffer video frames, and make them accessible to the filterchain."),
  144. .priv_size = sizeof(BufferSourceContext),
  145. .query_formats = query_formats,
  146. .init = init,
  147. .uninit = uninit,
  148. .inputs = (AVFilterPad[]) {{ .name = NULL }},
  149. .outputs = (AVFilterPad[]) {{ .name = "default",
  150. .type = AVMEDIA_TYPE_VIDEO,
  151. .request_frame = request_frame,
  152. .poll_frame = poll_frame,
  153. .config_props = config_props, },
  154. { .name = NULL}},
  155. };