mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/formats: Remove ff_make_formatu64_list()
It is unused since 8cbb055760
and it
actually coincides with avfilter_make_format64_list().
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
b40dd2fdab
commit
efbe58ceb6
|
@ -289,17 +289,6 @@ AVFilterFormats *ff_make_format_list(const int *fmts)
|
||||||
return formats;
|
return formats;
|
||||||
}
|
}
|
||||||
|
|
||||||
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;
|
|
||||||
}
|
|
||||||
|
|
||||||
AVFilterChannelLayouts *avfilter_make_format64_list(const int64_t *fmts)
|
AVFilterChannelLayouts *avfilter_make_format64_list(const int64_t *fmts)
|
||||||
{
|
{
|
||||||
MAKE_FORMAT_LIST(AVFilterChannelLayouts,
|
MAKE_FORMAT_LIST(AVFilterChannelLayouts,
|
||||||
|
|
|
@ -141,9 +141,6 @@ AVFilterChannelLayouts *ff_all_channel_counts(void);
|
||||||
av_warn_unused_result
|
av_warn_unused_result
|
||||||
AVFilterChannelLayouts *avfilter_make_format64_list(const int64_t *fmts);
|
AVFilterChannelLayouts *avfilter_make_format64_list(const int64_t *fmts);
|
||||||
|
|
||||||
av_warn_unused_result
|
|
||||||
AVFilterChannelLayouts *ff_make_formatu64_list(const uint64_t *fmts);
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A helper for query_formats() which sets all links to the same list of channel
|
* A helper for query_formats() which sets all links to the same list of channel
|
||||||
|
|
Loading…
Reference in New Issue