]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_format.c
lavfi/mp=decimate: fix off-by-one logic in diff_C() x loop
[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[PIX_FMT_NB];
43 } FormatContext;
44
45 #define 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[PIX_FMT_NAME_MAXSIZE];
52     int              pix_fmt_name_len, ret;
53     enum PixelFormat 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 >= 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 PixelFormat pix_fmt;
82
83     formats = av_mallocz(sizeof(AVFilterFormats));
84     formats->formats = av_malloc(sizeof(enum PixelFormat) * PIX_FMT_NB);
85
86     for (pix_fmt = 0; pix_fmt < 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 AVFilter avfilter_vf_format = {
101     .name      = "format",
102     .description = NULL_IF_CONFIG_SMALL("Convert the input video to one of the specified pixel formats."),
103
104     .init      = init,
105
106     .query_formats = query_formats_format,
107
108     .priv_size = sizeof(FormatContext),
109
110     .inputs    = (const AVFilterPad[]) {{ .name            = "default",
111                                           .type            = AVMEDIA_TYPE_VIDEO,
112                                           .get_video_buffer= ff_null_get_video_buffer,
113                                           .start_frame     = ff_null_start_frame,
114                                           .draw_slice      = ff_null_draw_slice,
115                                           .end_frame       = ff_null_end_frame, },
116                                         { .name = NULL}},
117     .outputs   = (const AVFilterPad[]) {{ .name            = "default",
118                                           .type            = AVMEDIA_TYPE_VIDEO },
119                                         { .name = NULL}},
120 };
121 #endif /* CONFIG_FORMAT_FILTER */
122
123 #if CONFIG_NOFORMAT_FILTER
124 static int query_formats_noformat(AVFilterContext *ctx)
125 {
126     ff_set_common_formats(ctx, make_format_list(ctx->priv, 0));
127     return 0;
128 }
129
130 AVFilter avfilter_vf_noformat = {
131     .name      = "noformat",
132     .description = NULL_IF_CONFIG_SMALL("Force libavfilter not to use any of the specified pixel formats for the input to the next filter."),
133
134     .init      = init,
135
136     .query_formats = query_formats_noformat,
137
138     .priv_size = sizeof(FormatContext),
139
140     .inputs    = (const AVFilterPad[]) {{ .name            = "default",
141                                           .type            = AVMEDIA_TYPE_VIDEO,
142                                           .get_video_buffer= ff_null_get_video_buffer,
143                                           .start_frame     = ff_null_start_frame,
144                                           .draw_slice      = ff_null_draw_slice,
145                                           .end_frame       = ff_null_end_frame, },
146                                         { .name = NULL}},
147     .outputs   = (const AVFilterPad[]) {{ .name            = "default",
148                                           .type            = AVMEDIA_TYPE_VIDEO },
149                                         { .name = NULL}},
150 };
151 #endif /* CONFIG_NOFORMAT_FILTER */