mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
avfilter/af_volumedetect: Remove dependency on channel layout
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
6d50dff816
commit
0e66dcd733
@ -41,9 +41,19 @@ static int query_formats(AVFilterContext *ctx)
|
||||
AV_SAMPLE_FMT_NONE
|
||||
};
|
||||
AVFilterFormats *formats;
|
||||
AVFilterChannelLayouts *layouts;
|
||||
int ret;
|
||||
|
||||
if (!(formats = ff_make_format_list(sample_fmts)))
|
||||
return AVERROR(ENOMEM);
|
||||
|
||||
layouts = ff_all_channel_counts();
|
||||
if (!layouts)
|
||||
return AVERROR(ENOMEM);
|
||||
ret = ff_set_common_channel_layouts(ctx, layouts);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
return ff_set_common_formats(ctx, formats);
|
||||
}
|
||||
|
||||
@ -51,9 +61,8 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *samples)
|
||||
{
|
||||
AVFilterContext *ctx = inlink->dst;
|
||||
VolDetectContext *vd = ctx->priv;
|
||||
int64_t layout = samples->channel_layout;
|
||||
int nb_samples = samples->nb_samples;
|
||||
int nb_channels = av_get_channel_layout_nb_channels(layout);
|
||||
int nb_channels = av_frame_get_channels(samples);
|
||||
int nb_planes = nb_channels;
|
||||
int plane, i;
|
||||
int16_t *pcm;
|
||||
|
Loading…
Reference in New Issue
Block a user