mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-08 16:54:03 +02:00
avfilter/af_mcompand: Store format in filter, remove query function
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
e74acd5771
commit
0c30dc0f9e
@ -122,23 +122,6 @@ static av_cold void uninit(AVFilterContext *ctx)
|
|||||||
av_freep(&s->bands);
|
av_freep(&s->bands);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int query_formats(AVFilterContext *ctx)
|
|
||||||
{
|
|
||||||
static const enum AVSampleFormat sample_fmts[] = {
|
|
||||||
AV_SAMPLE_FMT_DBLP,
|
|
||||||
AV_SAMPLE_FMT_NONE
|
|
||||||
};
|
|
||||||
int ret = ff_set_common_all_channel_counts(ctx);
|
|
||||||
if (ret < 0)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
ret = ff_set_common_formats_from_list(ctx, sample_fmts);
|
|
||||||
if (ret < 0)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
return ff_set_common_all_samplerates(ctx);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void count_items(char *item_str, int *nb_items, char delimiter)
|
static void count_items(char *item_str, int *nb_items, char delimiter)
|
||||||
{
|
{
|
||||||
char *p;
|
char *p;
|
||||||
@ -659,5 +642,5 @@ const AVFilter ff_af_mcompand = {
|
|||||||
.uninit = uninit,
|
.uninit = uninit,
|
||||||
FILTER_INPUTS(mcompand_inputs),
|
FILTER_INPUTS(mcompand_inputs),
|
||||||
FILTER_OUTPUTS(mcompand_outputs),
|
FILTER_OUTPUTS(mcompand_outputs),
|
||||||
FILTER_QUERY_FUNC(query_formats),
|
FILTER_SINGLE_SAMPLEFMT(AV_SAMPLE_FMT_DBLP),
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user