avfilter: have avfilter_get_by_name return const for next bump
[platform/upstream/libav.git] / libavfilter / vf_format.c
1 /*
2  * Copyright (c) 2007 Bobby Bingham
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 /**
22  * @file
23  * format and noformat video filters
24  */
25
26 #include <string.h>
27
28 #include "libavutil/internal.h"
29 #include "libavutil/mem.h"
30 #include "libavutil/pixdesc.h"
31 #include "libavutil/opt.h"
32
33 #include "avfilter.h"
34 #include "formats.h"
35 #include "internal.h"
36 #include "video.h"
37
38 typedef struct {
39     const AVClass *class;
40     char *pix_fmts;
41     /**
42      * List of flags telling if a given image format has been listed
43      * as argument to the filter.
44      */
45     int listed_pix_fmt_flags[AV_PIX_FMT_NB];
46 } FormatContext;
47
48 #define AV_PIX_FMT_NAME_MAXSIZE 32
49
50 static av_cold int init(AVFilterContext *ctx)
51 {
52     FormatContext *s = ctx->priv;
53     const char *cur, *sep;
54     char             pix_fmt_name[AV_PIX_FMT_NAME_MAXSIZE];
55     int              pix_fmt_name_len;
56     enum AVPixelFormat pix_fmt;
57
58     /* parse the list of formats */
59     for (cur = s->pix_fmts; cur; cur = sep ? sep + 1 : NULL) {
60         if (!(sep = strchr(cur, '|')))
61             pix_fmt_name_len = strlen(cur);
62         else
63             pix_fmt_name_len = sep - cur;
64         if (pix_fmt_name_len >= AV_PIX_FMT_NAME_MAXSIZE) {
65             av_log(ctx, AV_LOG_ERROR, "Format name too long\n");
66             return -1;
67         }
68
69         memcpy(pix_fmt_name, cur, pix_fmt_name_len);
70         pix_fmt_name[pix_fmt_name_len] = 0;
71         pix_fmt = av_get_pix_fmt(pix_fmt_name);
72
73         if (pix_fmt == AV_PIX_FMT_NONE) {
74             av_log(ctx, AV_LOG_ERROR, "Unknown pixel format: %s\n", pix_fmt_name);
75             return -1;
76         }
77
78         s->listed_pix_fmt_flags[pix_fmt] = 1;
79     }
80
81     return 0;
82 }
83
84 static AVFilterFormats *make_format_list(FormatContext *s, int flag)
85 {
86     AVFilterFormats *formats = NULL;
87     enum AVPixelFormat pix_fmt;
88
89     for (pix_fmt = 0; pix_fmt < AV_PIX_FMT_NB; pix_fmt++)
90         if (s->listed_pix_fmt_flags[pix_fmt] == flag) {
91             int ret = ff_add_format(&formats, pix_fmt);
92             if (ret < 0) {
93                 ff_formats_unref(&formats);
94                 return NULL;
95             }
96         }
97
98     return formats;
99 }
100
101 #define OFFSET(x) offsetof(FormatContext, x)
102 static const AVOption options[] = {
103     { "pix_fmts", "A '|'-separated list of pixel formats", OFFSET(pix_fmts), AV_OPT_TYPE_STRING, .flags = AV_OPT_FLAG_VIDEO_PARAM },
104     { NULL },
105 };
106
107 #if CONFIG_FORMAT_FILTER
108 static int query_formats_format(AVFilterContext *ctx)
109 {
110     ff_set_common_formats(ctx, make_format_list(ctx->priv, 1));
111     return 0;
112 }
113
114 static const AVClass format_class = {
115     .class_name = "format",
116     .item_name  = av_default_item_name,
117     .option     = options,
118     .version    = LIBAVUTIL_VERSION_INT,
119 };
120
121 static const AVFilterPad avfilter_vf_format_inputs[] = {
122     {
123         .name             = "default",
124         .type             = AVMEDIA_TYPE_VIDEO,
125         .get_video_buffer = ff_null_get_video_buffer,
126     },
127     { NULL }
128 };
129
130 static const AVFilterPad avfilter_vf_format_outputs[] = {
131     {
132         .name = "default",
133         .type = AVMEDIA_TYPE_VIDEO
134     },
135     { NULL }
136 };
137
138 AVFilter avfilter_vf_format = {
139     .name      = "format",
140     .description = NULL_IF_CONFIG_SMALL("Convert the input video to one of the specified pixel formats."),
141
142     .init      = init,
143
144     .query_formats = query_formats_format,
145
146     .priv_size = sizeof(FormatContext),
147     .priv_class = &format_class,
148
149     .inputs    = avfilter_vf_format_inputs,
150     .outputs   = avfilter_vf_format_outputs,
151 };
152 #endif /* CONFIG_FORMAT_FILTER */
153
154 #if CONFIG_NOFORMAT_FILTER
155 static int query_formats_noformat(AVFilterContext *ctx)
156 {
157     ff_set_common_formats(ctx, make_format_list(ctx->priv, 0));
158     return 0;
159 }
160
161 static const AVClass noformat_class = {
162     .class_name = "noformat",
163     .item_name  = av_default_item_name,
164     .option     = options,
165     .version    = LIBAVUTIL_VERSION_INT,
166 };
167
168 static const AVFilterPad avfilter_vf_noformat_inputs[] = {
169     {
170         .name             = "default",
171         .type             = AVMEDIA_TYPE_VIDEO,
172         .get_video_buffer = ff_null_get_video_buffer,
173     },
174     { NULL }
175 };
176
177 static const AVFilterPad avfilter_vf_noformat_outputs[] = {
178     {
179         .name = "default",
180         .type = AVMEDIA_TYPE_VIDEO
181     },
182     { NULL }
183 };
184
185 AVFilter avfilter_vf_noformat = {
186     .name      = "noformat",
187     .description = NULL_IF_CONFIG_SMALL("Force libavfilter not to use any of the specified pixel formats for the input to the next filter."),
188
189     .init      = init,
190
191     .query_formats = query_formats_noformat,
192
193     .priv_size = sizeof(FormatContext),
194     .priv_class = &noformat_class,
195
196     .inputs    = avfilter_vf_noformat_inputs,
197     .outputs   = avfilter_vf_noformat_outputs,
198 };
199 #endif /* CONFIG_NOFORMAT_FILTER */