]> git.sesse.net Git - ffmpeg/blob - libavfilter/vsrc_color.c
ffmpeg: get rid of the 'q' key schizofrenia
[ffmpeg] / libavfilter / vsrc_color.c
1 /*
2  * Copyright (c) 2010 Stefano Sabatini
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 #include "avfilter.h"
22 #include "libavutil/pixdesc.h"
23 #include "libavutil/colorspace.h"
24 #include "libavutil/imgutils.h"
25 #include "libavutil/parseutils.h"
26 #include "drawutils.h"
27
28 typedef struct {
29     int w, h;
30     uint8_t color[4];
31     AVRational time_base;
32     uint8_t *line[4];
33     int      line_step[4];
34     int hsub, vsub;         ///< chroma subsampling values
35     uint64_t pts;
36 } ColorContext;
37
38 static av_cold int color_init(AVFilterContext *ctx, const char *args, void *opaque)
39 {
40     ColorContext *color = ctx->priv;
41     char color_string[128] = "black";
42     char frame_size  [128] = "320x240";
43     char frame_rate  [128] = "25";
44     AVRational frame_rate_q;
45     int ret;
46
47     if (args)
48         sscanf(args, "%127[^:]:%127[^:]:%127s", color_string, frame_size, frame_rate);
49
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
55     if (av_parse_video_rate(&frame_rate_q, frame_rate) < 0 ||
56         frame_rate_q.den <= 0 || frame_rate_q.num <= 0) {
57         av_log(ctx, AV_LOG_ERROR, "Invalid frame rate: %s\n", frame_rate);
58         return AVERROR(EINVAL);
59     }
60     color->time_base.num = frame_rate_q.den;
61     color->time_base.den = frame_rate_q.num;
62
63     if ((ret = av_parse_color(color->color, color_string, -1, ctx)) < 0)
64         return ret;
65
66     return 0;
67 }
68
69 static av_cold void color_uninit(AVFilterContext *ctx)
70 {
71     ColorContext *color = ctx->priv;
72     int i;
73
74     for (i = 0; i < 4; i++) {
75         av_freep(&color->line[i]);
76         color->line_step[i] = 0;
77     }
78 }
79
80 static int query_formats(AVFilterContext *ctx)
81 {
82     static const enum PixelFormat pix_fmts[] = {
83         PIX_FMT_ARGB,         PIX_FMT_RGBA,
84         PIX_FMT_ABGR,         PIX_FMT_BGRA,
85         PIX_FMT_RGB24,        PIX_FMT_BGR24,
86
87         PIX_FMT_YUV444P,      PIX_FMT_YUV422P,
88         PIX_FMT_YUV420P,      PIX_FMT_YUV411P,
89         PIX_FMT_YUV410P,      PIX_FMT_YUV440P,
90         PIX_FMT_YUVJ444P,     PIX_FMT_YUVJ422P,
91         PIX_FMT_YUVJ420P,     PIX_FMT_YUVJ440P,
92         PIX_FMT_YUVA420P,
93
94         PIX_FMT_NONE
95     };
96
97     avfilter_set_common_formats(ctx, avfilter_make_format_list(pix_fmts));
98     return 0;
99 }
100
101 static int color_config_props(AVFilterLink *inlink)
102 {
103     AVFilterContext *ctx = inlink->src;
104     ColorContext *color = ctx->priv;
105     uint8_t rgba_color[4];
106     int is_packed_rgba;
107     const AVPixFmtDescriptor *pix_desc = &av_pix_fmt_descriptors[inlink->format];
108
109     color->hsub = pix_desc->log2_chroma_w;
110     color->vsub = pix_desc->log2_chroma_h;
111
112     color->w &= ~((1 << color->hsub) - 1);
113     color->h &= ~((1 << color->vsub) - 1);
114     if (av_image_check_size(color->w, color->h, 0, ctx) < 0)
115         return AVERROR(EINVAL);
116
117     memcpy(rgba_color, color->color, sizeof(rgba_color));
118     ff_fill_line_with_color(color->line, color->line_step, color->w, color->color,
119                             inlink->format, rgba_color, &is_packed_rgba, NULL);
120
121     av_log(ctx, AV_LOG_INFO, "w:%d h:%d r:%d/%d color:0x%02x%02x%02x%02x[%s]\n",
122            color->w, color->h, color->time_base.den, color->time_base.num,
123            color->color[0], color->color[1], color->color[2], color->color[3],
124            is_packed_rgba ? "rgba" : "yuva");
125     inlink->w = color->w;
126     inlink->h = color->h;
127
128     return 0;
129 }
130
131 static int color_request_frame(AVFilterLink *link)
132 {
133     ColorContext *color = link->src->priv;
134     AVFilterBufferRef *picref = avfilter_get_video_buffer(link, AV_PERM_WRITE, color->w, color->h);
135     picref->video->pixel_aspect = (AVRational) {1, 1};
136     picref->pts                 = av_rescale_q(color->pts++, color->time_base, AV_TIME_BASE_Q);
137     picref->pos                 = 0;
138
139     avfilter_start_frame(link, avfilter_ref_buffer(picref, ~0));
140     ff_draw_rectangle(picref->data, picref->linesize,
141                       color->line, color->line_step, color->hsub, color->vsub,
142                       0, 0, color->w, color->h);
143     avfilter_draw_slice(link, 0, color->h, 1);
144     avfilter_end_frame(link);
145     avfilter_unref_buffer(picref);
146
147     return 0;
148 }
149
150 AVFilter avfilter_vsrc_color = {
151     .name        = "color",
152     .description = NULL_IF_CONFIG_SMALL("Provide an uniformly colored input, syntax is: [color[:size[:rate]]]"),
153
154     .priv_size = sizeof(ColorContext),
155     .init      = color_init,
156     .uninit    = color_uninit,
157
158     .query_formats = query_formats,
159
160     .inputs    = (AVFilterPad[]) {{ .name = NULL}},
161
162     .outputs   = (AVFilterPad[]) {{ .name            = "default",
163                                     .type            = AVMEDIA_TYPE_VIDEO,
164                                     .request_frame   = color_request_frame,
165                                     .config_props    = color_config_props },
166                                   { .name = NULL}},
167 };