2 * Filter layer - format negotiation
3 * Copyright (c) 2007 Bobby Bingham
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "libavutil/avassert.h"
23 #include "libavutil/channel_layout.h"
24 #include "libavutil/common.h"
25 #include "libavutil/eval.h"
26 #include "libavutil/pixdesc.h"
27 #include "libavutil/parseutils.h"
32 #define KNOWN(l) (!FF_LAYOUT2COUNT(l)) /* for readability */
35 * Add all refs from a to ret and destroy a.
37 #define MERGE_REF(ret, a, fmts, type, fail) \
42 if (!(tmp = av_realloc_array(ret->refs, ret->refcount + a->refcount, \
47 for (i = 0; i < a->refcount; i ++) { \
48 ret->refs[ret->refcount] = a->refs[i]; \
49 *ret->refs[ret->refcount++] = ret; \
58 * Add all formats common for a and b to ret, copy the refs and destroy
61 #define MERGE_FORMATS(ret, a, b, fmts, nb, type, fail) \
63 int i, j, k = 0, count = FFMIN(a->nb, b->nb); \
65 if (!(ret = av_mallocz(sizeof(*ret)))) \
69 if (!(ret->fmts = av_malloc_array(count, sizeof(*ret->fmts)))) \
71 for (i = 0; i < a->nb; i++) \
72 for (j = 0; j < b->nb; j++) \
73 if (a->fmts[i] == b->fmts[j]) { \
74 if(k >= FFMIN(a->nb, b->nb)){ \
75 av_log(NULL, AV_LOG_ERROR, "Duplicate formats in avfilter_merge_formats() detected\n"); \
80 ret->fmts[k++] = a->fmts[i]; \
84 /* check that there was at least one common format */ \
88 MERGE_REF(ret, a, fmts, type, fail); \
89 MERGE_REF(ret, b, fmts, type, fail); \
92 AVFilterFormats *ff_merge_formats(AVFilterFormats *a, AVFilterFormats *b,
93 enum AVMediaType type)
95 AVFilterFormats *ret = NULL;
97 int alpha1=0, alpha2=0;
98 int chroma1=0, chroma2=0;
103 /* Do not lose chroma or alpha in merging.
104 It happens if both lists have formats with chroma (resp. alpha), but
105 the only formats in common do not have it (e.g. YUV+gray vs.
106 RGB+gray): in that case, the merging would select the gray format,
107 possibly causing a lossy conversion elsewhere in the graph.
108 To avoid that, pretend that there are no common formats to force the
109 insertion of a conversion filter. */
110 if (type == AVMEDIA_TYPE_VIDEO)
111 for (i = 0; i < a->nb_formats; i++)
112 for (j = 0; j < b->nb_formats; j++) {
113 const AVPixFmtDescriptor *adesc = av_pix_fmt_desc_get(a->formats[i]);
114 const AVPixFmtDescriptor *bdesc = av_pix_fmt_desc_get(b->formats[j]);
115 alpha2 |= adesc->flags & bdesc->flags & AV_PIX_FMT_FLAG_ALPHA;
116 chroma2|= adesc->nb_components > 1 && bdesc->nb_components > 1;
117 if (a->formats[i] == b->formats[j]) {
118 alpha1 |= adesc->flags & AV_PIX_FMT_FLAG_ALPHA;
119 chroma1|= adesc->nb_components > 1;
123 // If chroma or alpha can be lost through merging then do not merge
124 if (alpha2 > alpha1 || chroma2 > chroma1)
127 MERGE_FORMATS(ret, a, b, formats, nb_formats, AVFilterFormats, fail);
132 av_freep(&ret->refs);
133 av_freep(&ret->formats);
139 AVFilterFormats *ff_merge_samplerates(AVFilterFormats *a,
142 AVFilterFormats *ret = NULL;
144 if (a == b) return a;
146 if (a->nb_formats && b->nb_formats) {
147 MERGE_FORMATS(ret, a, b, formats, nb_formats, AVFilterFormats, fail);
148 } else if (a->nb_formats) {
149 MERGE_REF(a, b, formats, AVFilterFormats, fail);
152 MERGE_REF(b, a, formats, AVFilterFormats, fail);
159 av_freep(&ret->refs);
160 av_freep(&ret->formats);
166 AVFilterChannelLayouts *ff_merge_channel_layouts(AVFilterChannelLayouts *a,
167 AVFilterChannelLayouts *b)
169 AVFilterChannelLayouts *ret = NULL;
170 unsigned a_all = a->all_layouts + a->all_counts;
171 unsigned b_all = b->all_layouts + b->all_counts;
172 int ret_max, ret_nb = 0, i, j, round;
174 if (a == b) return a;
176 /* Put the most generic set in a, to avoid doing everything twice */
178 FFSWAP(AVFilterChannelLayouts *, a, b);
179 FFSWAP(unsigned, a_all, b_all);
182 if (a_all == 1 && !b_all) {
183 /* keep only known layouts in b; works also for b_all = 1 */
184 for (i = j = 0; i < b->nb_channel_layouts; i++)
185 if (KNOWN(b->channel_layouts[i]))
186 b->channel_layouts[j++] = b->channel_layouts[i];
187 /* Not optimal: the unknown layouts of b may become known after
191 b->nb_channel_layouts = j;
193 MERGE_REF(b, a, channel_layouts, AVFilterChannelLayouts, fail);
197 ret_max = a->nb_channel_layouts + b->nb_channel_layouts;
198 if (!(ret = av_mallocz(sizeof(*ret))) ||
199 !(ret->channel_layouts = av_malloc_array(ret_max,
200 sizeof(*ret->channel_layouts))))
203 /* a[known] intersect b[known] */
204 for (i = 0; i < a->nb_channel_layouts; i++) {
205 if (!KNOWN(a->channel_layouts[i]))
207 for (j = 0; j < b->nb_channel_layouts; j++) {
208 if (a->channel_layouts[i] == b->channel_layouts[j]) {
209 ret->channel_layouts[ret_nb++] = a->channel_layouts[i];
210 a->channel_layouts[i] = b->channel_layouts[j] = 0;
214 /* 1st round: a[known] intersect b[generic]
215 2nd round: a[generic] intersect b[known] */
216 for (round = 0; round < 2; round++) {
217 for (i = 0; i < a->nb_channel_layouts; i++) {
218 uint64_t fmt = a->channel_layouts[i], bfmt;
219 if (!fmt || !KNOWN(fmt))
221 bfmt = FF_COUNT2LAYOUT(av_get_channel_layout_nb_channels(fmt));
222 for (j = 0; j < b->nb_channel_layouts; j++)
223 if (b->channel_layouts[j] == bfmt)
224 ret->channel_layouts[ret_nb++] = a->channel_layouts[i];
226 /* 1st round: swap to prepare 2nd round; 2nd round: put it back */
227 FFSWAP(AVFilterChannelLayouts *, a, b);
229 /* a[generic] intersect b[generic] */
230 for (i = 0; i < a->nb_channel_layouts; i++) {
231 if (KNOWN(a->channel_layouts[i]))
233 for (j = 0; j < b->nb_channel_layouts; j++)
234 if (a->channel_layouts[i] == b->channel_layouts[j])
235 ret->channel_layouts[ret_nb++] = a->channel_layouts[i];
238 ret->nb_channel_layouts = ret_nb;
239 if (!ret->nb_channel_layouts)
241 MERGE_REF(ret, a, channel_layouts, AVFilterChannelLayouts, fail);
242 MERGE_REF(ret, b, channel_layouts, AVFilterChannelLayouts, fail);
247 av_freep(&ret->refs);
248 av_freep(&ret->channel_layouts);
254 int ff_fmt_is_in(int fmt, const int *fmts)
258 for (p = fmts; *p != -1; p++) {
265 #define MAKE_FORMAT_LIST(type, field, count_field) \
269 for (count = 0; fmts[count] != -1; count++) \
271 formats = av_mallocz(sizeof(*formats)); \
274 formats->count_field = count; \
276 formats->field = av_malloc_array(count, sizeof(*formats->field)); \
277 if (!formats->field) { \
278 av_freep(&formats); \
283 AVFilterFormats *ff_make_format_list(const int *fmts)
285 MAKE_FORMAT_LIST(AVFilterFormats, formats, nb_formats);
287 formats->formats[count] = fmts[count];
292 AVFilterChannelLayouts *avfilter_make_format64_list(const int64_t *fmts)
294 MAKE_FORMAT_LIST(AVFilterChannelLayouts,
295 channel_layouts, nb_channel_layouts);
297 memcpy(formats->channel_layouts, fmts,
298 sizeof(*formats->channel_layouts) * count);
303 #define ADD_FORMAT(f, fmt, type, list, nb) \
308 if (!(*f) && !(*f = av_mallocz(sizeof(**f)))) \
309 return AVERROR(ENOMEM); \
311 fmts = av_realloc_array((*f)->list, (*f)->nb + 1, \
312 sizeof(*(*f)->list)); \
316 return AVERROR(ENOMEM); \
320 (*f)->list[(*f)->nb++] = fmt; \
323 int ff_add_format(AVFilterFormats **avff, int64_t fmt)
325 ADD_FORMAT(avff, fmt, int, formats, nb_formats);
329 int ff_add_channel_layout(AVFilterChannelLayouts **l, uint64_t channel_layout)
331 av_assert1(!(*l && (*l)->all_layouts));
332 ADD_FORMAT(l, channel_layout, uint64_t, channel_layouts, nb_channel_layouts);
336 AVFilterFormats *ff_all_formats(enum AVMediaType type)
338 AVFilterFormats *ret = NULL;
340 if (type == AVMEDIA_TYPE_VIDEO) {
341 const AVPixFmtDescriptor *desc = NULL;
342 while ((desc = av_pix_fmt_desc_next(desc))) {
343 if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL))
344 ff_add_format(&ret, av_pix_fmt_desc_get_id(desc));
346 } else if (type == AVMEDIA_TYPE_AUDIO) {
347 enum AVSampleFormat fmt = 0;
348 while (av_get_sample_fmt_name(fmt)) {
349 ff_add_format(&ret, fmt);
357 const int64_t avfilter_all_channel_layouts[] = {
358 #include "all_channel_layouts.inc"
362 // AVFilterFormats *avfilter_make_all_channel_layouts(void)
364 // return avfilter_make_format64_list(avfilter_all_channel_layouts);
367 AVFilterFormats *ff_planar_sample_fmts(void)
369 AVFilterFormats *ret = NULL;
372 for (fmt = 0; av_get_bytes_per_sample(fmt)>0; fmt++)
373 if (av_sample_fmt_is_planar(fmt))
374 ff_add_format(&ret, fmt);
379 AVFilterFormats *ff_all_samplerates(void)
381 AVFilterFormats *ret = av_mallocz(sizeof(*ret));
385 AVFilterChannelLayouts *ff_all_channel_layouts(void)
387 AVFilterChannelLayouts *ret = av_mallocz(sizeof(*ret));
390 ret->all_layouts = 1;
394 AVFilterChannelLayouts *ff_all_channel_counts(void)
396 AVFilterChannelLayouts *ret = av_mallocz(sizeof(*ret));
399 ret->all_layouts = ret->all_counts = 1;
403 #define FORMATS_REF(f, ref) \
406 f->refs = av_realloc(f->refs, sizeof(*f->refs) * ++f->refcount); \
409 f->refs[f->refcount-1] = ref; \
412 void ff_channel_layouts_ref(AVFilterChannelLayouts *f, AVFilterChannelLayouts **ref)
417 void ff_formats_ref(AVFilterFormats *f, AVFilterFormats **ref)
422 #define FIND_REF_INDEX(ref, idx) \
425 for (i = 0; i < (*ref)->refcount; i ++) \
426 if((*ref)->refs[i] == ref) { \
432 #define FORMATS_UNREF(ref, list) \
439 FIND_REF_INDEX(ref, idx); \
442 memmove((*ref)->refs + idx, (*ref)->refs + idx + 1, \
443 sizeof(*(*ref)->refs) * ((*ref)->refcount - idx - 1)); \
445 if(!--(*ref)->refcount) { \
446 av_free((*ref)->list); \
447 av_free((*ref)->refs); \
453 void ff_formats_unref(AVFilterFormats **ref)
455 FORMATS_UNREF(ref, formats);
458 void ff_channel_layouts_unref(AVFilterChannelLayouts **ref)
460 FORMATS_UNREF(ref, channel_layouts);
463 #define FORMATS_CHANGEREF(oldref, newref) \
467 FIND_REF_INDEX(oldref, idx); \
470 (*oldref)->refs[idx] = newref; \
476 void ff_channel_layouts_changeref(AVFilterChannelLayouts **oldref,
477 AVFilterChannelLayouts **newref)
479 FORMATS_CHANGEREF(oldref, newref);
482 void ff_formats_changeref(AVFilterFormats **oldref, AVFilterFormats **newref)
484 FORMATS_CHANGEREF(oldref, newref);
487 #define SET_COMMON_FORMATS(ctx, fmts, in_fmts, out_fmts, ref, list) \
491 for (i = 0; i < ctx->nb_inputs; i++) { \
492 if (ctx->inputs[i] && !ctx->inputs[i]->out_fmts) { \
493 ref(fmts, &ctx->inputs[i]->out_fmts); \
497 for (i = 0; i < ctx->nb_outputs; i++) { \
498 if (ctx->outputs[i] && !ctx->outputs[i]->in_fmts) { \
499 ref(fmts, &ctx->outputs[i]->in_fmts); \
505 av_freep(&fmts->list); \
506 av_freep(&fmts->refs); \
511 void ff_set_common_channel_layouts(AVFilterContext *ctx,
512 AVFilterChannelLayouts *layouts)
514 SET_COMMON_FORMATS(ctx, layouts, in_channel_layouts, out_channel_layouts,
515 ff_channel_layouts_ref, channel_layouts);
518 void ff_set_common_samplerates(AVFilterContext *ctx,
519 AVFilterFormats *samplerates)
521 SET_COMMON_FORMATS(ctx, samplerates, in_samplerates, out_samplerates,
522 ff_formats_ref, formats);
526 * A helper for query_formats() which sets all links to the same list of
527 * formats. If there are no links hooked to this filter, the list of formats is
530 void ff_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats)
532 SET_COMMON_FORMATS(ctx, formats, in_formats, out_formats,
533 ff_formats_ref, formats);
536 static int default_query_formats_common(AVFilterContext *ctx,
537 AVFilterChannelLayouts *(layouts)(void))
539 enum AVMediaType type = ctx->inputs && ctx->inputs [0] ? ctx->inputs [0]->type :
540 ctx->outputs && ctx->outputs[0] ? ctx->outputs[0]->type :
543 ff_set_common_formats(ctx, ff_all_formats(type));
544 if (type == AVMEDIA_TYPE_AUDIO) {
545 ff_set_common_channel_layouts(ctx, layouts());
546 ff_set_common_samplerates(ctx, ff_all_samplerates());
552 int ff_default_query_formats(AVFilterContext *ctx)
554 return default_query_formats_common(ctx, ff_all_channel_layouts);
557 int ff_query_formats_all(AVFilterContext *ctx)
559 return default_query_formats_common(ctx, ff_all_channel_counts);
562 /* internal functions for parsing audio format arguments */
564 int ff_parse_pixel_format(enum AVPixelFormat *ret, const char *arg, void *log_ctx)
567 int pix_fmt = av_get_pix_fmt(arg);
568 if (pix_fmt == AV_PIX_FMT_NONE) {
569 pix_fmt = strtol(arg, &tail, 0);
570 if (*tail || !av_pix_fmt_desc_get(pix_fmt)) {
571 av_log(log_ctx, AV_LOG_ERROR, "Invalid pixel format '%s'\n", arg);
572 return AVERROR(EINVAL);
579 int ff_parse_sample_format(int *ret, const char *arg, void *log_ctx)
582 int sfmt = av_get_sample_fmt(arg);
583 if (sfmt == AV_SAMPLE_FMT_NONE) {
584 sfmt = strtol(arg, &tail, 0);
585 if (*tail || av_get_bytes_per_sample(sfmt)<=0) {
586 av_log(log_ctx, AV_LOG_ERROR, "Invalid sample format '%s'\n", arg);
587 return AVERROR(EINVAL);
594 int ff_parse_time_base(AVRational *ret, const char *arg, void *log_ctx)
597 if(av_parse_ratio(&r, arg, INT_MAX, 0, log_ctx) < 0 ||r.num<=0 ||r.den<=0) {
598 av_log(log_ctx, AV_LOG_ERROR, "Invalid time base '%s'\n", arg);
599 return AVERROR(EINVAL);
605 int ff_parse_sample_rate(int *ret, const char *arg, void *log_ctx)
608 double srate = av_strtod(arg, &tail);
609 if (*tail || srate < 1 || (int)srate != srate || srate > INT_MAX) {
610 av_log(log_ctx, AV_LOG_ERROR, "Invalid sample rate '%s'\n", arg);
611 return AVERROR(EINVAL);
617 int ff_parse_channel_layout(int64_t *ret, int *nret, const char *arg,
621 int64_t chlayout, count;
624 count = strtol(arg, &tail, 10);
625 if (*tail == 'c' && !tail[1] && count > 0 && count < 63) {
631 chlayout = av_get_channel_layout(arg);
633 chlayout = strtol(arg, &tail, 10);
634 if (*tail || chlayout == 0) {
635 av_log(log_ctx, AV_LOG_ERROR, "Invalid channel layout '%s'\n", arg);
636 return AVERROR(EINVAL);
641 *nret = av_get_channel_layout_nb_channels(chlayout);
654 for (cl = avfilter_all_channel_layouts; *cl != -1; cl++) {
655 av_get_channel_layout_string(buf, sizeof(buf), -1, *cl);