vsrc_color.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /*
  2. * Copyright (c) 2010 Stefano Sabatini
  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. * color source
  23. */
  24. #include "avfilter.h"
  25. #include "libavutil/pixdesc.h"
  26. #include "libavutil/colorspace.h"
  27. #include "libavutil/imgutils.h"
  28. #include "libavutil/mathematics.h"
  29. #include "libavutil/parseutils.h"
  30. #include "drawutils.h"
  31. typedef struct {
  32. int w, h;
  33. uint8_t color_rgba[4];
  34. AVRational time_base;
  35. uint64_t pts;
  36. FFDrawContext draw;
  37. FFDrawColor color;
  38. } ColorContext;
  39. static av_cold int color_init(AVFilterContext *ctx, const char *args, void *opaque)
  40. {
  41. ColorContext *color = ctx->priv;
  42. char color_string[128] = "black";
  43. char frame_size [128] = "320x240";
  44. char frame_rate [128] = "25";
  45. AVRational frame_rate_q;
  46. int ret;
  47. if (args)
  48. sscanf(args, "%127[^:]:%127[^:]:%127s", color_string, frame_size, frame_rate);
  49. if (av_parse_video_size(&color->w, &color->h, frame_size) < 0) {
  50. av_log(ctx, AV_LOG_ERROR, "Invalid frame size: %s\n", frame_size);
  51. return AVERROR(EINVAL);
  52. }
  53. if (av_parse_video_rate(&frame_rate_q, frame_rate) < 0 ||
  54. frame_rate_q.den <= 0 || frame_rate_q.num <= 0) {
  55. av_log(ctx, AV_LOG_ERROR, "Invalid frame rate: %s\n", frame_rate);
  56. return AVERROR(EINVAL);
  57. }
  58. color->time_base.num = frame_rate_q.den;
  59. color->time_base.den = frame_rate_q.num;
  60. if ((ret = av_parse_color(color->color_rgba, color_string, -1, ctx)) < 0)
  61. return ret;
  62. return 0;
  63. }
  64. static int query_formats(AVFilterContext *ctx)
  65. {
  66. avfilter_set_common_pixel_formats(ctx, ff_draw_supported_pixel_formats(0));
  67. return 0;
  68. }
  69. static int color_config_props(AVFilterLink *inlink)
  70. {
  71. AVFilterContext *ctx = inlink->src;
  72. ColorContext *color = ctx->priv;
  73. ff_draw_init(&color->draw, inlink->format, 0);
  74. ff_draw_color(&color->draw, &color->color, color->color_rgba);
  75. color->w = ff_draw_round_to_sub(&color->draw, 0, -1, color->w);
  76. color->h = ff_draw_round_to_sub(&color->draw, 1, -1, color->h);
  77. if (av_image_check_size(color->w, color->h, 0, ctx) < 0)
  78. return AVERROR(EINVAL);
  79. av_log(ctx, AV_LOG_INFO, "w:%d h:%d r:%d/%d color:0x%02x%02x%02x%02x\n",
  80. color->w, color->h, color->time_base.den, color->time_base.num,
  81. color->color_rgba[0], color->color_rgba[1], color->color_rgba[2], color->color_rgba[3]);
  82. inlink->w = color->w;
  83. inlink->h = color->h;
  84. inlink->time_base = color->time_base;
  85. return 0;
  86. }
  87. static int color_request_frame(AVFilterLink *link)
  88. {
  89. ColorContext *color = link->src->priv;
  90. AVFilterBufferRef *picref = avfilter_get_video_buffer(link, AV_PERM_WRITE, color->w, color->h);
  91. picref->video->sample_aspect_ratio = (AVRational) {1, 1};
  92. picref->pts = color->pts++;
  93. picref->pos = -1;
  94. avfilter_start_frame(link, avfilter_ref_buffer(picref, ~0));
  95. ff_fill_rectangle(&color->draw, &color->color, picref->data, picref->linesize,
  96. 0, 0, color->w, color->h);
  97. avfilter_draw_slice(link, 0, color->h, 1);
  98. avfilter_end_frame(link);
  99. avfilter_unref_buffer(picref);
  100. return 0;
  101. }
  102. AVFilter avfilter_vsrc_color = {
  103. .name = "color",
  104. .description = NULL_IF_CONFIG_SMALL("Provide an uniformly colored input, syntax is: [color[:size[:rate]]]."),
  105. .priv_size = sizeof(ColorContext),
  106. .init = color_init,
  107. .query_formats = query_formats,
  108. .inputs = (const AVFilterPad[]) {{ .name = NULL}},
  109. .outputs = (const AVFilterPad[]) {{ .name = "default",
  110. .type = AVMEDIA_TYPE_VIDEO,
  111. .request_frame = color_request_frame,
  112. .config_props = color_config_props },
  113. { .name = NULL}},
  114. };