libavfilter/formats.c
39135465
 /*
  * Filter layer - format negotiation
3fa77bde
  * Copyright (c) 2007 Bobby Bingham
39135465
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
b6afb2dd
 #include "libavutil/avassert.h"
1acd2f6b
 #include "libavutil/channel_layout.h"
1d9c2dc8
 #include "libavutil/common.h"
3f07d40e
 #include "libavutil/eval.h"
5ff84183
 #include "libavutil/pixdesc.h"
3448404a
 #include "libavutil/parseutils.h"
39135465
 #include "avfilter.h"
7464a53a
 #include "internal.h"
5775a183
 #include "formats.h"
39135465
 
b6afb2dd
 #define KNOWN(l) (!FF_LAYOUT2COUNT(l)) /* for readability */
 
4c4de9ca
 /**
  * Add all refs from a to ret and destroy a.
  */
5775a183
 #define MERGE_REF(ret, a, fmts, type, fail)                                \
 do {                                                                       \
     type ***tmp;                                                           \
     int i;                                                                 \
                                                                            \
0a7ad6bf
     if (!(tmp = av_realloc_array(ret->refs, ret->refcount + a->refcount,   \
                                  sizeof(*tmp))))                           \
5775a183
         goto fail;                                                         \
     ret->refs = tmp;                                                       \
                                                                            \
     for (i = 0; i < a->refcount; i ++) {                                   \
         ret->refs[ret->refcount] = a->refs[i];                             \
         *ret->refs[ret->refcount++] = ret;                                 \
     }                                                                      \
                                                                            \
     av_freep(&a->refs);                                                    \
     av_freep(&a->fmts);                                                    \
     av_freep(&a);                                                          \
 } while (0)
93faa9fa
 
5775a183
 /**
  * Add all formats common for a and b to ret, copy the refs and destroy
  * a and b.
  */
 #define MERGE_FORMATS(ret, a, b, fmts, nb, type, fail)                          \
 do {                                                                            \
     int i, j, k = 0, count = FFMIN(a->nb, b->nb);                               \
                                                                                 \
     if (!(ret = av_mallocz(sizeof(*ret))))                                      \
         goto fail;                                                              \
                                                                                 \
     if (count) {                                                                \
0a7ad6bf
         if (!(ret->fmts = av_malloc_array(count, sizeof(*ret->fmts))))          \
5775a183
             goto fail;                                                          \
         for (i = 0; i < a->nb; i++)                                             \
             for (j = 0; j < b->nb; j++)                                         \
1cbf7fb4
                 if (a->fmts[i] == b->fmts[j]) {                                 \
                     if(k >= FFMIN(a->nb, b->nb)){                               \
0efcf16a
                         av_log(NULL, AV_LOG_ERROR, "Duplicate formats in avfilter_merge_formats() detected\n"); \
1cbf7fb4
                         av_free(ret->fmts);                                     \
                         av_free(ret);                                           \
                         return NULL;                                            \
                     }                                                           \
5775a183
                     ret->fmts[k++] = a->fmts[i];                                \
1cbf7fb4
                 }                                                               \
5775a183
     }                                                                           \
1cbf7fb4
     ret->nb = k;                                                                \
5775a183
     /* check that there was at least one common format */                       \
     if (!ret->nb)                                                               \
         goto fail;                                                              \
                                                                                 \
     MERGE_REF(ret, a, fmts, type, fail);                                        \
     MERGE_REF(ret, b, fmts, type, fail);                                        \
 } while (0)
37e0b997
 
2d98dd3d
 AVFilterFormats *ff_merge_formats(AVFilterFormats *a, AVFilterFormats *b,
                                   enum AVMediaType type)
39135465
 {
5775a183
     AVFilterFormats *ret = NULL;
b97d61f9
     int i, j;
     int alpha1=0, alpha2=0;
     int chroma1=0, chroma2=0;
39135465
 
11b6a824
     if (a == b)
         return a;
79a0ec1a
 
2d98dd3d
     /* Do not lose chroma or alpha in merging.
        It happens if both lists have formats with chroma (resp. alpha), but
        the only formats in common do not have it (e.g. YUV+gray vs.
        RGB+gray): in that case, the merging would select the gray format,
        possibly causing a lossy conversion elsewhere in the graph.
        To avoid that, pretend that there are no common formats to force the
        insertion of a conversion filter. */
     if (type == AVMEDIA_TYPE_VIDEO)
74cb7ef8
         for (i = 0; i < a->nb_formats; i++)
             for (j = 0; j < b->nb_formats; j++) {
e568d432
                 const AVPixFmtDescriptor *adesc = av_pix_fmt_desc_get(a->formats[i]);
                 const AVPixFmtDescriptor *bdesc = av_pix_fmt_desc_get(b->formats[j]);
c7c71f95
                 alpha2 |= adesc->flags & bdesc->flags & AV_PIX_FMT_FLAG_ALPHA;
e568d432
                 chroma2|= adesc->nb_components > 1 && bdesc->nb_components > 1;
                 if (a->formats[i] == b->formats[j]) {
c7c71f95
                     alpha1 |= adesc->flags & AV_PIX_FMT_FLAG_ALPHA;
e568d432
                     chroma1|= adesc->nb_components > 1;
                 }
b97d61f9
             }
 
     // If chroma or alpha can be lost through merging then do not merge
     if (alpha2 > alpha1 || chroma2 > chroma1)
         return NULL;
 
b01f6041
     MERGE_FORMATS(ret, a, b, formats, nb_formats, AVFilterFormats, fail);
39135465
 
5775a183
     return ret;
 fail:
     if (ret) {
         av_freep(&ret->refs);
         av_freep(&ret->formats);
39135465
     }
5775a183
     av_freep(&ret);
     return NULL;
 }
 
 AVFilterFormats *ff_merge_samplerates(AVFilterFormats *a,
                                       AVFilterFormats *b)
 {
     AVFilterFormats *ret = NULL;
39135465
 
5775a183
     if (a == b) return a;
37e0b997
 
b01f6041
     if (a->nb_formats && b->nb_formats) {
         MERGE_FORMATS(ret, a, b, formats, nb_formats, AVFilterFormats, fail);
     } else if (a->nb_formats) {
5775a183
         MERGE_REF(a, b, formats, AVFilterFormats, fail);
         ret = a;
     } else {
         MERGE_REF(b, a, formats, AVFilterFormats, fail);
         ret = b;
39135465
     }
 
     return ret;
5775a183
 fail:
     if (ret) {
         av_freep(&ret->refs);
         av_freep(&ret->formats);
     }
     av_freep(&ret);
     return NULL;
 }
37e0b997
 
5775a183
 AVFilterChannelLayouts *ff_merge_channel_layouts(AVFilterChannelLayouts *a,
                                                  AVFilterChannelLayouts *b)
 {
     AVFilterChannelLayouts *ret = NULL;
b6afb2dd
     unsigned a_all = a->all_layouts + a->all_counts;
     unsigned b_all = b->all_layouts + b->all_counts;
     int ret_max, ret_nb = 0, i, j, round;
5775a183
 
     if (a == b) return a;
 
b6afb2dd
     /* Put the most generic set in a, to avoid doing everything twice */
     if (a_all < b_all) {
         FFSWAP(AVFilterChannelLayouts *, a, b);
         FFSWAP(unsigned, a_all, b_all);
     }
     if (a_all) {
         if (a_all == 1 && !b_all) {
             /* keep only known layouts in b; works also for b_all = 1 */
             for (i = j = 0; i < b->nb_channel_layouts; i++)
                 if (KNOWN(b->channel_layouts[i]))
                     b->channel_layouts[j++] = b->channel_layouts[i];
f810ca63
             /* Not optimal: the unknown layouts of b may become known after
                another merge. */
             if (!j)
                 return NULL;
b6afb2dd
             b->nb_channel_layouts = j;
         }
5775a183
         MERGE_REF(b, a, channel_layouts, AVFilterChannelLayouts, fail);
b6afb2dd
         return b;
     }
 
     ret_max = a->nb_channel_layouts + b->nb_channel_layouts;
     if (!(ret = av_mallocz(sizeof(*ret))) ||
0a7ad6bf
         !(ret->channel_layouts = av_malloc_array(ret_max,
                                                  sizeof(*ret->channel_layouts))))
b6afb2dd
         goto fail;
 
     /* a[known] intersect b[known] */
     for (i = 0; i < a->nb_channel_layouts; i++) {
         if (!KNOWN(a->channel_layouts[i]))
             continue;
         for (j = 0; j < b->nb_channel_layouts; j++) {
             if (a->channel_layouts[i] == b->channel_layouts[j]) {
                 ret->channel_layouts[ret_nb++] = a->channel_layouts[i];
                 a->channel_layouts[i] = b->channel_layouts[j] = 0;
             }
         }
     }
     /* 1st round: a[known] intersect b[generic]
        2nd round: a[generic] intersect b[known] */
     for (round = 0; round < 2; round++) {
         for (i = 0; i < a->nb_channel_layouts; i++) {
             uint64_t fmt = a->channel_layouts[i], bfmt;
             if (!fmt || !KNOWN(fmt))
                 continue;
             bfmt = FF_COUNT2LAYOUT(av_get_channel_layout_nb_channels(fmt));
             for (j = 0; j < b->nb_channel_layouts; j++)
                 if (b->channel_layouts[j] == bfmt)
                     ret->channel_layouts[ret_nb++] = a->channel_layouts[i];
         }
         /* 1st round: swap to prepare 2nd round; 2nd round: put it back */
         FFSWAP(AVFilterChannelLayouts *, a, b);
     }
     /* a[generic] intersect b[generic] */
     for (i = 0; i < a->nb_channel_layouts; i++) {
         if (KNOWN(a->channel_layouts[i]))
             continue;
         for (j = 0; j < b->nb_channel_layouts; j++)
             if (a->channel_layouts[i] == b->channel_layouts[j])
                 ret->channel_layouts[ret_nb++] = a->channel_layouts[i];
5775a183
     }
39135465
 
b6afb2dd
     ret->nb_channel_layouts = ret_nb;
     if (!ret->nb_channel_layouts)
         goto fail;
     MERGE_REF(ret, a, channel_layouts, AVFilterChannelLayouts, fail);
     MERGE_REF(ret, b, channel_layouts, AVFilterChannelLayouts, fail);
39135465
     return ret;
b6afb2dd
 
5775a183
 fail:
     if (ret) {
         av_freep(&ret->refs);
         av_freep(&ret->channel_layouts);
     }
     av_freep(&ret);
     return NULL;
39135465
 }
 
7464a53a
 int ff_fmt_is_in(int fmt, const int *fmts)
 {
     const int *p;
 
     for (p = fmts; *p != -1; p++) {
         if (fmt == *p)
             return 1;
     }
     return 0;
 }
 
5ac9ef64
 #define MAKE_FORMAT_LIST(type, field, count_field)                      \
     type *formats;                                                      \
527ca398
     int count = 0;                                                      \
     if (fmts)                                                           \
         for (count = 0; fmts[count] != -1; count++)                     \
             ;                                                           \
5ac9ef64
     formats = av_mallocz(sizeof(*formats));                             \
9f8f2bca
     if (!formats)                                                       \
         return NULL;                                                    \
5ac9ef64
     formats->count_field = count;                                       \
527ca398
     if (count) {                                                        \
0a7ad6bf
         formats->field = av_malloc_array(count, sizeof(*formats->field));      \
5ac9ef64
         if (!formats->field) {                                          \
9f8f2bca
             av_freep(&formats);                                         \
527ca398
             return NULL;                                                \
         }                                                               \
     }
 
b74a1da4
 AVFilterFormats *ff_make_format_list(const int *fmts)
f6a1fa85
 {
74cb7ef8
     MAKE_FORMAT_LIST(AVFilterFormats, formats, nb_formats);
527ca398
     while (count--)
         formats->formats[count] = fmts[count];
f6a1fa85
 
527ca398
     return formats;
 }
0a19538b
 
 AVFilterChannelLayouts *ff_make_formatu64_list(const uint64_t *fmts)
 {
     MAKE_FORMAT_LIST(AVFilterChannelLayouts,
                      channel_layouts, nb_channel_layouts);
     if (count)
         memcpy(formats->channel_layouts, fmts,
                sizeof(*formats->channel_layouts) * count);
 
     return formats;
 }
f6a1fa85
 
1cbf7fb4
 AVFilterChannelLayouts *avfilter_make_format64_list(const int64_t *fmts)
527ca398
 {
5ac9ef64
     MAKE_FORMAT_LIST(AVFilterChannelLayouts,
                      channel_layouts, nb_channel_layouts);
527ca398
     if (count)
5ac9ef64
         memcpy(formats->channel_layouts, fmts,
                sizeof(*formats->channel_layouts) * count);
f6a1fa85
 
5ac9ef64
     return formats;
f6a1fa85
 }
 
6aaac24d
 #define ADD_FORMAT(f, fmt, unref_fn, type, list, nb)        \
5775a183
 do {                                                        \
     type *fmts;                                             \
75819faf
     void *oldf = *f;                                        \
5775a183
                                                             \
6aaac24d
     if (!(*f) && !(*f = av_mallocz(sizeof(**f)))) {         \
         unref_fn(f);                                        \
5775a183
         return AVERROR(ENOMEM);                             \
6aaac24d
     }                                                       \
5775a183
                                                             \
93d9ce7c
     fmts = av_realloc_array((*f)->list, (*f)->nb + 1,       \
                             sizeof(*(*f)->list));           \
863ee8a8
     if (!fmts) {                                            \
6aaac24d
         unref_fn(f);                                        \
75819faf
         if (!oldf)                                          \
             av_freep(f);                                    \
5775a183
         return AVERROR(ENOMEM);                             \
863ee8a8
     }                                                       \
5775a183
                                                             \
     (*f)->list = fmts;                                      \
     (*f)->list[(*f)->nb++] = fmt;                           \
 } while (0)
 
ad60b3b1
 int ff_add_format(AVFilterFormats **avff, int64_t fmt)
4fd1f187
 {
6aaac24d
     ADD_FORMAT(avff, fmt, ff_formats_unref, int, formats, nb_formats);
b6afb2dd
     return 0;
5775a183
 }
4fd1f187
 
5775a183
 int ff_add_channel_layout(AVFilterChannelLayouts **l, uint64_t channel_layout)
 {
b6afb2dd
     av_assert1(!(*l && (*l)->all_layouts));
6aaac24d
     ADD_FORMAT(l, channel_layout, ff_channel_layouts_unref, uint64_t, channel_layouts, nb_channel_layouts);
b6afb2dd
     return 0;
4fd1f187
 }
 
b74a1da4
 AVFilterFormats *ff_all_formats(enum AVMediaType type)
39135465
 {
c1d662fd
     AVFilterFormats *ret = NULL;
d3a4e41c
 
7cc4c9f3
     if (type == AVMEDIA_TYPE_VIDEO) {
         const AVPixFmtDescriptor *desc = NULL;
         while ((desc = av_pix_fmt_desc_next(desc))) {
6aaac24d
             if (ff_add_format(&ret, av_pix_fmt_desc_get_id(desc)) < 0)
                 return NULL;
7cc4c9f3
         }
     } else if (type == AVMEDIA_TYPE_AUDIO) {
         enum AVSampleFormat fmt = 0;
         while (av_get_sample_fmt_name(fmt)) {
6aaac24d
             if (ff_add_format(&ret, fmt) < 0)
                 return NULL;
7cc4c9f3
             fmt++;
         }
59ee9f78
     }
d3a4e41c
 
     return ret;
39135465
 }
 
ea8de109
 const int64_t avfilter_all_channel_layouts[] = {
64ff8a76
 #include "all_channel_layouts.inc"
ea8de109
     -1
 };
 
1cbf7fb4
 // AVFilterFormats *avfilter_make_all_channel_layouts(void)
 // {
 //     return avfilter_make_format64_list(avfilter_all_channel_layouts);
 // }
fd2c0a5d
 
d6251368
 AVFilterFormats *ff_planar_sample_fmts(void)
 {
     AVFilterFormats *ret = NULL;
     int fmt;
 
1853e2cb
     for (fmt = 0; av_get_bytes_per_sample(fmt)>0; fmt++)
d6251368
         if (av_sample_fmt_is_planar(fmt))
6aaac24d
             if (ff_add_format(&ret, fmt) < 0)
                 return NULL;
d6251368
 
     return ret;
 }
 
5775a183
 AVFilterFormats *ff_all_samplerates(void)
39135465
 {
5775a183
     AVFilterFormats *ret = av_mallocz(sizeof(*ret));
     return ret;
39135465
 }
 
5775a183
 AVFilterChannelLayouts *ff_all_channel_layouts(void)
88cfb804
 {
5775a183
     AVFilterChannelLayouts *ret = av_mallocz(sizeof(*ret));
b6afb2dd
     if (!ret)
         return NULL;
     ret->all_layouts = 1;
5775a183
     return ret;
88cfb804
 }
 
7bb98b75
 AVFilterChannelLayouts *ff_all_channel_counts(void)
 {
     AVFilterChannelLayouts *ret = av_mallocz(sizeof(*ret));
     if (!ret)
         return NULL;
     ret->all_layouts = ret->all_counts = 1;
     return ret;
 }
 
6aaac24d
 #define FORMATS_REF(f, ref, unref_fn)                                           \
545b0dd6
     void *tmp;                                                                  \
                                                                                 \
6aaac24d
     if (!f || !ref)                                                             \
         return AVERROR(ENOMEM);                                                 \
545b0dd6
                                                                                 \
     tmp = av_realloc_array(f->refs, sizeof(*f->refs), f->refcount + 1);         \
6aaac24d
     if (!tmp) {                                                                 \
         unref_fn(&f);                                                           \
f861d9b2
         return AVERROR(ENOMEM);                                                 \
6aaac24d
     }                                                                           \
f861d9b2
     f->refs = tmp;                                                              \
     f->refs[f->refcount++] = ref;                                               \
     *ref = f;                                                                   \
     return 0
 
 int ff_channel_layouts_ref(AVFilterChannelLayouts *f, AVFilterChannelLayouts **ref)
39135465
 {
6aaac24d
     FORMATS_REF(f, ref, ff_channel_layouts_unref);
5775a183
 }
d3c01751
 
f861d9b2
 int ff_formats_ref(AVFilterFormats *f, AVFilterFormats **ref)
39135465
 {
6aaac24d
     FORMATS_REF(f, ref, ff_formats_unref);
5775a183
 }
d3c01751
 
5775a183
 #define FIND_REF_INDEX(ref, idx)            \
 do {                                        \
     int i;                                  \
     for (i = 0; i < (*ref)->refcount; i ++) \
         if((*ref)->refs[i] == ref) {        \
             idx = i;                        \
             break;                          \
         }                                   \
 } while (0)
 
 #define FORMATS_UNREF(ref, list)                                   \
 do {                                                               \
     int idx = -1;                                                  \
                                                                    \
93afb338
     if (!*ref || !(*ref)->refs)                                    \
5775a183
         return;                                                    \
                                                                    \
     FIND_REF_INDEX(ref, idx);                                      \
                                                                    \
     if (idx >= 0)                                                  \
         memmove((*ref)->refs + idx, (*ref)->refs + idx + 1,        \
             sizeof(*(*ref)->refs) * ((*ref)->refcount - idx - 1)); \
                                                                    \
     if(!--(*ref)->refcount) {                                      \
         av_free((*ref)->list);                                     \
         av_free((*ref)->refs);                                     \
         av_free(*ref);                                             \
     }                                                              \
     *ref = NULL;                                                   \
 } while (0)
063e7692
 
b74a1da4
 void ff_formats_unref(AVFilterFormats **ref)
5775a183
 {
     FORMATS_UNREF(ref, formats);
 }
88cfb804
 
5775a183
 void ff_channel_layouts_unref(AVFilterChannelLayouts **ref)
 {
     FORMATS_UNREF(ref, channel_layouts);
 }
88cfb804
 
5775a183
 #define FORMATS_CHANGEREF(oldref, newref)       \
 do {                                            \
     int idx = -1;                               \
                                                 \
     FIND_REF_INDEX(oldref, idx);                \
                                                 \
     if (idx >= 0) {                             \
         (*oldref)->refs[idx] = newref;          \
         *newref = *oldref;                      \
         *oldref = NULL;                         \
     }                                           \
 } while (0)
 
 void ff_channel_layouts_changeref(AVFilterChannelLayouts **oldref,
                                   AVFilterChannelLayouts **newref)
 {
     FORMATS_CHANGEREF(oldref, newref);
39135465
 }
 
b74a1da4
 void ff_formats_changeref(AVFilterFormats **oldref, AVFilterFormats **newref)
eac24950
 {
5775a183
     FORMATS_CHANGEREF(oldref, newref);
eac24950
 }
4c64fed3
 
6aaac24d
 #define SET_COMMON_FORMATS(ctx, fmts, in_fmts, out_fmts, ref_fn, unref_fn, list) \
4c64fed3
     int count = 0, i;                                               \
                                                                     \
545b0dd6
     if (!fmts)                                                      \
6aaac24d
         return AVERROR(ENOMEM);                                     \
545b0dd6
                                                                     \
9baeff95
     for (i = 0; i < ctx->nb_inputs; i++) {                          \
c527027c
         if (ctx->inputs[i] && !ctx->inputs[i]->out_fmts) {          \
6aaac24d
             int ret = ref_fn(fmts, &ctx->inputs[i]->out_fmts);      \
             if (ret < 0) {                                          \
                 unref_fn(&fmts);                                    \
9f17d4ae
                 av_freep(&fmts->list);                              \
                 av_freep(&fmts);                                    \
545b0dd6
                 return ret;                                         \
6aaac24d
             }                                                       \
4c64fed3
             count++;                                                \
         }                                                           \
     }                                                               \
9baeff95
     for (i = 0; i < ctx->nb_outputs; i++) {                         \
c527027c
         if (ctx->outputs[i] && !ctx->outputs[i]->in_fmts) {         \
6aaac24d
             int ret = ref_fn(fmts, &ctx->outputs[i]->in_fmts);      \
             if (ret < 0) {                                          \
                 unref_fn(&fmts);                                    \
9f17d4ae
                 av_freep(&fmts->list);                              \
                 av_freep(&fmts);                                    \
545b0dd6
                 return ret;                                         \
6aaac24d
             }                                                       \
4c64fed3
             count++;                                                \
         }                                                           \
     }                                                               \
                                                                     \
     if (!count) {                                                   \
         av_freep(&fmts->list);                                      \
         av_freep(&fmts->refs);                                      \
         av_freep(&fmts);                                            \
     }                                                               \
545b0dd6
                                                                     \
     return 0;
4c64fed3
 
545b0dd6
 int ff_set_common_channel_layouts(AVFilterContext *ctx,
                                   AVFilterChannelLayouts *layouts)
4c64fed3
 {
     SET_COMMON_FORMATS(ctx, layouts, in_channel_layouts, out_channel_layouts,
6aaac24d
                        ff_channel_layouts_ref, ff_channel_layouts_unref, channel_layouts);
4c64fed3
 }
 
545b0dd6
 int ff_set_common_samplerates(AVFilterContext *ctx,
                               AVFilterFormats *samplerates)
4c64fed3
 {
     SET_COMMON_FORMATS(ctx, samplerates, in_samplerates, out_samplerates,
6aaac24d
                        ff_formats_ref, ff_formats_unref, formats);
4c64fed3
 }
 
 /**
  * A helper for query_formats() which sets all links to the same list of
  * formats. If there are no links hooked to this filter, the list of formats is
  * freed.
  */
545b0dd6
 int ff_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats)
4c64fed3
 {
     SET_COMMON_FORMATS(ctx, formats, in_formats, out_formats,
6aaac24d
                        ff_formats_ref, ff_formats_unref, formats);
4c64fed3
 }
eac24950
 
b6b2f343
 static int default_query_formats_common(AVFilterContext *ctx,
                                         AVFilterChannelLayouts *(layouts)(void))
4c64fed3
 {
545b0dd6
     int ret;
4c64fed3
     enum AVMediaType type = ctx->inputs  && ctx->inputs [0] ? ctx->inputs [0]->type :
                             ctx->outputs && ctx->outputs[0] ? ctx->outputs[0]->type :
                             AVMEDIA_TYPE_VIDEO;
 
545b0dd6
     ret = ff_set_common_formats(ctx, ff_all_formats(type));
     if (ret < 0)
         return ret;
4c64fed3
     if (type == AVMEDIA_TYPE_AUDIO) {
545b0dd6
         ret = ff_set_common_channel_layouts(ctx, layouts());
         if (ret < 0)
             return ret;
         ret = ff_set_common_samplerates(ctx, ff_all_samplerates());
         if (ret < 0)
             return ret;
eac24950
     }
4c64fed3
 
     return 0;
eac24950
 }
 
b6b2f343
 int ff_default_query_formats(AVFilterContext *ctx)
 {
7ceb9e6b
     return default_query_formats_common(ctx, ff_all_channel_counts);
b6b2f343
 }
 
7ceb9e6b
 int ff_query_formats_all_layouts(AVFilterContext *ctx)
b6b2f343
 {
7ceb9e6b
     return default_query_formats_common(ctx, ff_all_channel_layouts);
b6b2f343
 }
 
3f07d40e
 /* internal functions for parsing audio format arguments */
 
ac627b3d
 int ff_parse_pixel_format(enum AVPixelFormat *ret, const char *arg, void *log_ctx)
e26782a9
 {
     char *tail;
     int pix_fmt = av_get_pix_fmt(arg);
ac627b3d
     if (pix_fmt == AV_PIX_FMT_NONE) {
e26782a9
         pix_fmt = strtol(arg, &tail, 0);
64fb19cc
         if (*tail || !av_pix_fmt_desc_get(pix_fmt)) {
e26782a9
             av_log(log_ctx, AV_LOG_ERROR, "Invalid pixel format '%s'\n", arg);
             return AVERROR(EINVAL);
         }
     }
     *ret = pix_fmt;
     return 0;
 }
 
3f07d40e
 int ff_parse_sample_format(int *ret, const char *arg, void *log_ctx)
 {
     char *tail;
     int sfmt = av_get_sample_fmt(arg);
     if (sfmt == AV_SAMPLE_FMT_NONE) {
         sfmt = strtol(arg, &tail, 0);
1853e2cb
         if (*tail || av_get_bytes_per_sample(sfmt)<=0) {
3f07d40e
             av_log(log_ctx, AV_LOG_ERROR, "Invalid sample format '%s'\n", arg);
             return AVERROR(EINVAL);
         }
     }
     *ret = sfmt;
     return 0;
 }
 
3448404a
 int ff_parse_time_base(AVRational *ret, const char *arg, void *log_ctx)
 {
     AVRational r;
     if(av_parse_ratio(&r, arg, INT_MAX, 0, log_ctx) < 0 ||r.num<=0  ||r.den<=0) {
         av_log(log_ctx, AV_LOG_ERROR, "Invalid time base '%s'\n", arg);
         return AVERROR(EINVAL);
     }
     *ret = r;
     return 0;
 }
 
4381bddc
 int ff_parse_sample_rate(int *ret, const char *arg, void *log_ctx)
3f07d40e
 {
     char *tail;
     double srate = av_strtod(arg, &tail);
4381bddc
     if (*tail || srate < 1 || (int)srate != srate || srate > INT_MAX) {
3f07d40e
         av_log(log_ctx, AV_LOG_ERROR, "Invalid sample rate '%s'\n", arg);
         return AVERROR(EINVAL);
     }
     *ret = srate;
     return 0;
 }
 
6e2473ed
 int ff_parse_channel_layout(int64_t *ret, int *nret, const char *arg,
                             void *log_ctx)
3f07d40e
 {
     char *tail;
7cbb52ec
     int64_t chlayout;
977fd884
     int nb_channels;
 
     if (av_get_extended_channel_layout(arg, &chlayout, &nb_channels) < 0) {
         /* [TEMPORARY 2016-12 -> 2017-12]*/
         nb_channels = strtol(arg, &tail, 10);
         if (!errno && *tail == 'c' && *(tail + 1) == '\0' && nb_channels > 0 && nb_channels < 64) {
             chlayout = 0;
             av_log(log_ctx, AV_LOG_WARNING, "Deprecated channel count specification '%s'. This will stop working in releases made in 2018 and after.\n", arg);
         } else {
3f07d40e
             av_log(log_ctx, AV_LOG_ERROR, "Invalid channel layout '%s'\n", arg);
             return AVERROR(EINVAL);
         }
977fd884
     }
     if (!chlayout && !nret) {
         av_log(log_ctx, AV_LOG_ERROR, "Unknown channel layout '%s' is not supported.\n", arg);
         return AVERROR(EINVAL);
3f07d40e
     }
     *ret = chlayout;
6e2473ed
     if (nret)
977fd884
         *nret = nb_channels;
 
3f07d40e
     return 0;
 }