1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

avfilter/formats: Add function to create AVFilterFormats with one entry

Most instances ff_add_formats() actually only ever add one format;
this function can be used to simplify those callers.

Reviewed-by: Nicolas George <george@nsup.org>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2021-09-30 05:33:25 +02:00
parent 628b30e886
commit aa6360928e
2 changed files with 12 additions and 0 deletions

View File

@@ -431,6 +431,12 @@ int ff_add_channel_layout(AVFilterChannelLayouts **l, uint64_t channel_layout)
return 0; return 0;
} }
AVFilterFormats *ff_make_formats_list_singleton(int fmt)
{
int fmts[2] = { fmt, -1 };
return ff_make_format_list(fmts);
}
AVFilterFormats *ff_all_formats(enum AVMediaType type) AVFilterFormats *ff_all_formats(enum AVMediaType type)
{ {
AVFilterFormats *ret = NULL; AVFilterFormats *ret = NULL;

View File

@@ -208,6 +208,12 @@ int ff_default_query_formats(AVFilterContext *ctx);
av_warn_unused_result av_warn_unused_result
AVFilterFormats *ff_make_format_list(const int *fmts); AVFilterFormats *ff_make_format_list(const int *fmts);
/**
* Equivalent to ff_make_format_list({const int[]}{ fmt, -1 })
*/
av_warn_unused_result
AVFilterFormats *ff_make_formats_list_singleton(int fmt);
/** /**
* Add fmt to the list of media formats contained in *avff. * Add fmt to the list of media formats contained in *avff.
* If *avff is NULL the function allocates the filter formats struct * If *avff is NULL the function allocates the filter formats struct