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.

259 lines
8.4KB

  1. /*
  2. * Copyright (c) 2008 Vitor Sessak
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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 "internal.h"
  26. #include "avcodec.h"
  27. #include "buffersrc.h"
  28. #include "vsrc_buffer.h"
  29. #include "libavutil/imgutils.h"
  30. typedef struct {
  31. AVFilterBufferRef *picref;
  32. AVFilterContext *scale;
  33. int h, w;
  34. enum PixelFormat pix_fmt;
  35. AVRational time_base; ///< time_base to set in the output link
  36. AVRational sample_aspect_ratio;
  37. char sws_param[256];
  38. } BufferSourceContext;
  39. #define CHECK_PARAM_CHANGE(s, c, width, height, format)\
  40. if (c->w != width || c->h != height || c->pix_fmt != format) {\
  41. av_log(s, AV_LOG_ERROR, "Changing frame properties on the fly is not supported.\n");\
  42. return AVERROR(EINVAL);\
  43. }
  44. int av_vsrc_buffer_add_video_buffer_ref(AVFilterContext *buffer_filter,
  45. AVFilterBufferRef *picref, int flags)
  46. {
  47. BufferSourceContext *c = buffer_filter->priv;
  48. AVFilterLink *outlink = buffer_filter->outputs[0];
  49. int ret;
  50. if (c->picref) {
  51. if (flags & AV_VSRC_BUF_FLAG_OVERWRITE) {
  52. avfilter_unref_buffer(c->picref);
  53. c->picref = NULL;
  54. } else {
  55. av_log(buffer_filter, AV_LOG_ERROR,
  56. "Buffering several frames is not supported. "
  57. "Please consume all available frames before adding a new one.\n");
  58. return AVERROR(EINVAL);
  59. }
  60. }
  61. if (picref->video->w != c->w || picref->video->h != c->h || picref->format != c->pix_fmt) {
  62. AVFilterContext *scale = buffer_filter->outputs[0]->dst;
  63. AVFilterLink *link;
  64. char scale_param[1024];
  65. av_log(buffer_filter, AV_LOG_INFO,
  66. "Buffer video input changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s\n",
  67. c->w, c->h, av_pix_fmt_descriptors[c->pix_fmt].name,
  68. picref->video->w, picref->video->h, av_pix_fmt_descriptors[picref->format].name);
  69. if (!scale || strcmp(scale->filter->name, "scale")) {
  70. AVFilter *f = avfilter_get_by_name("scale");
  71. av_log(buffer_filter, AV_LOG_INFO, "Inserting scaler filter\n");
  72. if ((ret = avfilter_open(&scale, f, "Input equalizer")) < 0)
  73. return ret;
  74. c->scale = scale;
  75. snprintf(scale_param, sizeof(scale_param)-1, "%d:%d:%s", c->w, c->h, c->sws_param);
  76. if ((ret = avfilter_init_filter(scale, scale_param, NULL)) < 0) {
  77. return ret;
  78. }
  79. if ((ret = avfilter_insert_filter(buffer_filter->outputs[0], scale, 0, 0)) < 0) {
  80. return ret;
  81. }
  82. scale->outputs[0]->time_base = scale->inputs[0]->time_base;
  83. scale->outputs[0]->format= c->pix_fmt;
  84. } else if (!strcmp(scale->filter->name, "scale")) {
  85. snprintf(scale_param, sizeof(scale_param)-1, "%d:%d:%s",
  86. scale->outputs[0]->w, scale->outputs[0]->h, c->sws_param);
  87. scale->filter->init(scale, scale_param, NULL);
  88. }
  89. c->pix_fmt = scale->inputs[0]->format = picref->format;
  90. c->w = scale->inputs[0]->w = picref->video->w;
  91. c->h = scale->inputs[0]->h = picref->video->h;
  92. link = scale->outputs[0];
  93. if ((ret = link->srcpad->config_props(link)) < 0)
  94. return ret;
  95. }
  96. c->picref = avfilter_get_video_buffer(outlink, AV_PERM_WRITE,
  97. picref->video->w, picref->video->h);
  98. av_image_copy(c->picref->data, c->picref->linesize,
  99. (void*)picref->data, picref->linesize,
  100. picref->format, picref->video->w, picref->video->h);
  101. avfilter_copy_buffer_ref_props(c->picref, picref);
  102. return 0;
  103. }
  104. int av_buffersrc_buffer(AVFilterContext *s, AVFilterBufferRef *buf)
  105. {
  106. BufferSourceContext *c = s->priv;
  107. if (c->picref) {
  108. av_log(s, AV_LOG_ERROR,
  109. "Buffering several frames is not supported. "
  110. "Please consume all available frames before adding a new one.\n"
  111. );
  112. return AVERROR(EINVAL);
  113. }
  114. // CHECK_PARAM_CHANGE(s, c, buf->video->w, buf->video->h, buf->format);
  115. c->picref = buf;
  116. return 0;
  117. }
  118. #if CONFIG_AVCODEC
  119. #include "avcodec.h"
  120. int av_vsrc_buffer_add_frame(AVFilterContext *buffer_src,
  121. const AVFrame *frame, int flags)
  122. {
  123. int ret;
  124. AVFilterBufferRef *picref =
  125. avfilter_get_video_buffer_ref_from_frame(frame, AV_PERM_WRITE);
  126. if (!picref)
  127. return AVERROR(ENOMEM);
  128. ret = av_vsrc_buffer_add_video_buffer_ref(buffer_src, picref, flags);
  129. picref->buf->data[0] = NULL;
  130. avfilter_unref_buffer(picref);
  131. return ret;
  132. }
  133. #endif
  134. static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
  135. {
  136. BufferSourceContext *c = ctx->priv;
  137. char pix_fmt_str[128];
  138. int ret, n = 0;
  139. *c->sws_param = 0;
  140. if (!args ||
  141. (n = sscanf(args, "%d:%d:%127[^:]:%d:%d:%d:%d:%255c", &c->w, &c->h, pix_fmt_str,
  142. &c->time_base.num, &c->time_base.den,
  143. &c->sample_aspect_ratio.num, &c->sample_aspect_ratio.den, c->sws_param)) < 7) {
  144. av_log(ctx, AV_LOG_ERROR, "Expected at least 7 arguments, but only %d found in '%s'\n", n, args);
  145. return AVERROR(EINVAL);
  146. }
  147. if ((ret = ff_parse_pixel_format(&c->pix_fmt, pix_fmt_str, ctx)) < 0)
  148. return ret;
  149. av_log(ctx, AV_LOG_INFO, "w:%d h:%d pixfmt:%s tb:%d/%d sar:%d/%d sws_param:%s\n",
  150. c->w, c->h, av_pix_fmt_descriptors[c->pix_fmt].name,
  151. c->time_base.num, c->time_base.den,
  152. c->sample_aspect_ratio.num, c->sample_aspect_ratio.den, c->sws_param);
  153. return 0;
  154. }
  155. static av_cold void uninit(AVFilterContext *ctx)
  156. {
  157. BufferSourceContext *s = ctx->priv;
  158. if (s->picref)
  159. avfilter_unref_buffer(s->picref);
  160. s->picref = NULL;
  161. avfilter_free(s->scale);
  162. s->scale = NULL;
  163. }
  164. static int query_formats(AVFilterContext *ctx)
  165. {
  166. BufferSourceContext *c = ctx->priv;
  167. enum PixelFormat pix_fmts[] = { c->pix_fmt, PIX_FMT_NONE };
  168. avfilter_set_common_pixel_formats(ctx, avfilter_make_format_list(pix_fmts));
  169. return 0;
  170. }
  171. static int config_props(AVFilterLink *link)
  172. {
  173. BufferSourceContext *c = link->src->priv;
  174. link->w = c->w;
  175. link->h = c->h;
  176. link->sample_aspect_ratio = c->sample_aspect_ratio;
  177. link->time_base = c->time_base;
  178. return 0;
  179. }
  180. static int request_frame(AVFilterLink *link)
  181. {
  182. BufferSourceContext *c = link->src->priv;
  183. if (!c->picref) {
  184. av_log(link->src, AV_LOG_WARNING,
  185. "request_frame() called with no available frame!\n");
  186. return AVERROR(EINVAL);
  187. }
  188. avfilter_start_frame(link, avfilter_ref_buffer(c->picref, ~0));
  189. avfilter_draw_slice(link, 0, link->h, 1);
  190. avfilter_end_frame(link);
  191. avfilter_unref_buffer(c->picref);
  192. c->picref = NULL;
  193. return 0;
  194. }
  195. static int poll_frame(AVFilterLink *link)
  196. {
  197. BufferSourceContext *c = link->src->priv;
  198. return !!c->picref;
  199. }
  200. AVFilter avfilter_vsrc_buffer = {
  201. .name = "buffer",
  202. .description = NULL_IF_CONFIG_SMALL("Buffer video frames, and make them accessible to the filterchain."),
  203. .priv_size = sizeof(BufferSourceContext),
  204. .query_formats = query_formats,
  205. .init = init,
  206. .uninit = uninit,
  207. .inputs = (const AVFilterPad[]) {{ .name = NULL }},
  208. .outputs = (const AVFilterPad[]) {{ .name = "default",
  209. .type = AVMEDIA_TYPE_VIDEO,
  210. .request_frame = request_frame,
  211. .poll_frame = poll_frame,
  212. .config_props = config_props, },
  213. { .name = NULL}},
  214. };