vsrc_color.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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[4];
  34. AVRational time_base;
  35. uint8_t *line[4];
  36. int line_step[4];
  37. int hsub, vsub; ///< chroma subsampling values
  38. uint64_t pts;
  39. } ColorContext;
  40. static av_cold int color_init(AVFilterContext *ctx, const char *args, void *opaque)
  41. {
  42. ColorContext *color = ctx->priv;
  43. char color_string[128] = "black";
  44. char frame_size [128] = "320x240";
  45. char frame_rate [128] = "25";
  46. AVRational frame_rate_q;
  47. int ret;
  48. if (args)
  49. sscanf(args, "%127[^:]:%127[^:]:%127s", color_string, frame_size, frame_rate);
  50. if (av_parse_video_size(&color->w, &color->h, frame_size) < 0) {
  51. av_log(ctx, AV_LOG_ERROR, "Invalid frame size: %s\n", frame_size);
  52. return AVERROR(EINVAL);
  53. }
  54. if (av_parse_video_rate(&frame_rate_q, frame_rate) < 0 ||
  55. frame_rate_q.den <= 0 || frame_rate_q.num <= 0) {
  56. av_log(ctx, AV_LOG_ERROR, "Invalid frame rate: %s\n", frame_rate);
  57. return AVERROR(EINVAL);
  58. }
  59. color->time_base.num = frame_rate_q.den;
  60. color->time_base.den = frame_rate_q.num;
  61. if ((ret = av_parse_color(color->color, color_string, -1, ctx)) < 0)
  62. return ret;
  63. return 0;
  64. }
  65. static av_cold void color_uninit(AVFilterContext *ctx)
  66. {
  67. ColorContext *color = ctx->priv;
  68. int i;
  69. for (i = 0; i < 4; i++) {
  70. av_freep(&color->line[i]);
  71. color->line_step[i] = 0;
  72. }
  73. }
  74. static int query_formats(AVFilterContext *ctx)
  75. {
  76. static const enum PixelFormat pix_fmts[] = {
  77. PIX_FMT_ARGB, PIX_FMT_RGBA,
  78. PIX_FMT_ABGR, PIX_FMT_BGRA,
  79. PIX_FMT_RGB24, PIX_FMT_BGR24,
  80. PIX_FMT_YUV444P, PIX_FMT_YUV422P,
  81. PIX_FMT_YUV420P, PIX_FMT_YUV411P,
  82. PIX_FMT_YUV410P, PIX_FMT_YUV440P,
  83. PIX_FMT_YUVJ444P, PIX_FMT_YUVJ422P,
  84. PIX_FMT_YUVJ420P, PIX_FMT_YUVJ440P,
  85. PIX_FMT_YUVA420P,
  86. PIX_FMT_NONE
  87. };
  88. avfilter_set_common_pixel_formats(ctx, avfilter_make_format_list(pix_fmts));
  89. return 0;
  90. }
  91. static int color_config_props(AVFilterLink *inlink)
  92. {
  93. AVFilterContext *ctx = inlink->src;
  94. ColorContext *color = ctx->priv;
  95. uint8_t rgba_color[4];
  96. int is_packed_rgba;
  97. const AVPixFmtDescriptor *pix_desc = &av_pix_fmt_descriptors[inlink->format];
  98. color->hsub = pix_desc->log2_chroma_w;
  99. color->vsub = pix_desc->log2_chroma_h;
  100. color->w &= ~((1 << color->hsub) - 1);
  101. color->h &= ~((1 << color->vsub) - 1);
  102. if (av_image_check_size(color->w, color->h, 0, ctx) < 0)
  103. return AVERROR(EINVAL);
  104. memcpy(rgba_color, color->color, sizeof(rgba_color));
  105. ff_fill_line_with_color(color->line, color->line_step, color->w, color->color,
  106. inlink->format, rgba_color, &is_packed_rgba, NULL);
  107. av_log(ctx, AV_LOG_INFO, "w:%d h:%d r:%d/%d color:0x%02x%02x%02x%02x[%s]\n",
  108. color->w, color->h, color->time_base.den, color->time_base.num,
  109. color->color[0], color->color[1], color->color[2], color->color[3],
  110. is_packed_rgba ? "rgba" : "yuva");
  111. inlink->w = color->w;
  112. inlink->h = color->h;
  113. inlink->time_base = color->time_base;
  114. return 0;
  115. }
  116. static int color_request_frame(AVFilterLink *link)
  117. {
  118. ColorContext *color = link->src->priv;
  119. AVFilterBufferRef *picref = avfilter_get_video_buffer(link, AV_PERM_WRITE, color->w, color->h);
  120. picref->video->sample_aspect_ratio = (AVRational) {1, 1};
  121. picref->pts = color->pts++;
  122. picref->pos = -1;
  123. avfilter_start_frame(link, avfilter_ref_buffer(picref, ~0));
  124. ff_draw_rectangle(picref->data, picref->linesize,
  125. color->line, color->line_step, color->hsub, color->vsub,
  126. 0, 0, color->w, color->h);
  127. avfilter_draw_slice(link, 0, color->h, 1);
  128. avfilter_end_frame(link);
  129. avfilter_unref_buffer(picref);
  130. return 0;
  131. }
  132. AVFilter avfilter_vsrc_color = {
  133. .name = "color",
  134. .description = NULL_IF_CONFIG_SMALL("Provide an uniformly colored input, syntax is: [color[:size[:rate]]]"),
  135. .priv_size = sizeof(ColorContext),
  136. .init = color_init,
  137. .uninit = color_uninit,
  138. .query_formats = query_formats,
  139. .inputs = (AVFilterPad[]) {{ .name = NULL}},
  140. .outputs = (AVFilterPad[]) {{ .name = "default",
  141. .type = AVMEDIA_TYPE_VIDEO,
  142. .request_frame = color_request_frame,
  143. .config_props = color_config_props },
  144. { .name = NULL}},
  145. };