]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_format.c
Merge commit '74a9a624c5c4d50760d8d57458eba57366f6cb26'
[ffmpeg] / libavfilter / vf_format.c
1 /*
2  * Copyright (c) 2007 Bobby Bingham
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 /**
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 "avfilter.h"
32 #include "internal.h"
33 #include "formats.h"
34 #include "internal.h"
35 #include "video.h"
36
37 typedef struct {
38     /**
39      * List of flags telling if a given image format has been listed
40      * as argument to the filter.
41      */
42     int listed_pix_fmt_flags[AV_PIX_FMT_NB];
43 } FormatContext;
44
45 #define AV_PIX_FMT_NAME_MAXSIZE 32
46
47 static av_cold int init(AVFilterContext *ctx, const char *args)
48 {
49     FormatContext *format = ctx->priv;
50     const char *cur, *sep;
51     char             pix_fmt_name[AV_PIX_FMT_NAME_MAXSIZE];
52     int              pix_fmt_name_len, ret;
53     enum AVPixelFormat pix_fmt;
54
55     /* parse the list of formats */
56     for (cur = args; cur; cur = sep ? sep+1 : NULL) {
57         if (!(sep = strchr(cur, ':')))
58             pix_fmt_name_len = strlen(cur);
59         else
60             pix_fmt_name_len = sep - cur;
61         if (pix_fmt_name_len >= AV_PIX_FMT_NAME_MAXSIZE) {
62             av_log(ctx, AV_LOG_ERROR, "Format name too long\n");
63             return -1;
64         }
65
66         memcpy(pix_fmt_name, cur, pix_fmt_name_len);
67         pix_fmt_name[pix_fmt_name_len] = 0;
68
69         if ((ret = ff_parse_pixel_format(&pix_fmt, pix_fmt_name, ctx)) < 0)
70             return ret;
71
72         format->listed_pix_fmt_flags[pix_fmt] = 1;
73     }
74
75     return 0;
76 }
77
78 static AVFilterFormats *make_format_list(FormatContext *format, int flag)
79 {
80     AVFilterFormats *formats;
81     enum AVPixelFormat pix_fmt;
82
83     formats = av_mallocz(sizeof(AVFilterFormats));
84     formats->formats = av_malloc(sizeof(enum AVPixelFormat) * AV_PIX_FMT_NB);
85
86     for (pix_fmt = 0; pix_fmt < AV_PIX_FMT_NB; pix_fmt++)
87         if (format->listed_pix_fmt_flags[pix_fmt] == flag)
88             formats->formats[formats->format_count++] = pix_fmt;
89
90     return formats;
91 }
92
93 #if CONFIG_FORMAT_FILTER
94 static int query_formats_format(AVFilterContext *ctx)
95 {
96     ff_set_common_formats(ctx, make_format_list(ctx->priv, 1));
97     return 0;
98 }
99
100 static const AVFilterPad avfilter_vf_format_inputs[] = {
101     {
102         .name             = "default",
103         .type             = AVMEDIA_TYPE_VIDEO,
104         .get_video_buffer = ff_null_get_video_buffer,
105     },
106     { NULL }
107 };
108
109 static const AVFilterPad avfilter_vf_format_outputs[] = {
110     {
111         .name = "default",
112         .type = AVMEDIA_TYPE_VIDEO
113     },
114     { NULL }
115 };
116
117 AVFilter avfilter_vf_format = {
118     .name      = "format",
119     .description = NULL_IF_CONFIG_SMALL("Convert the input video to one of the specified pixel formats."),
120
121     .init      = init,
122
123     .query_formats = query_formats_format,
124
125     .priv_size = sizeof(FormatContext),
126
127     .inputs    = avfilter_vf_format_inputs,
128     .outputs   = avfilter_vf_format_outputs,
129 };
130 #endif /* CONFIG_FORMAT_FILTER */
131
132 #if CONFIG_NOFORMAT_FILTER
133 static int query_formats_noformat(AVFilterContext *ctx)
134 {
135     ff_set_common_formats(ctx, make_format_list(ctx->priv, 0));
136     return 0;
137 }
138
139 static const AVFilterPad avfilter_vf_noformat_inputs[] = {
140     {
141         .name             = "default",
142         .type             = AVMEDIA_TYPE_VIDEO,
143         .get_video_buffer = ff_null_get_video_buffer,
144     },
145     { NULL }
146 };
147
148 static const AVFilterPad avfilter_vf_noformat_outputs[] = {
149     {
150         .name = "default",
151         .type = AVMEDIA_TYPE_VIDEO
152     },
153     { NULL }
154 };
155
156 AVFilter avfilter_vf_noformat = {
157     .name      = "noformat",
158     .description = NULL_IF_CONFIG_SMALL("Force libavfilter not to use any of the specified pixel formats for the input to the next filter."),
159
160     .init      = init,
161
162     .query_formats = query_formats_noformat,
163
164     .priv_size = sizeof(FormatContext),
165
166     .inputs    = avfilter_vf_noformat_inputs,
167     .outputs   = avfilter_vf_noformat_outputs,
168 };
169 #endif /* CONFIG_NOFORMAT_FILTER */