mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-11 09:20:01 +01:00
avfilter/af_asr: remove unecessary initializer from layouts
Fixes compilation with msvc. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
@@ -131,8 +131,8 @@ static int query_formats(const AVFilterContext *ctx,
|
||||
AV_SAMPLE_FMT_NONE,
|
||||
};
|
||||
static const AVChannelLayout layouts[] = {
|
||||
(AVChannelLayout)AV_CHANNEL_LAYOUT_MONO,
|
||||
(AVChannelLayout){ .nb_channels = 0 },
|
||||
AV_CHANNEL_LAYOUT_MONO,
|
||||
{ .nb_channels = 0 },
|
||||
};
|
||||
|
||||
const ASRContext *s = ctx->priv;
|
||||
|
||||
Reference in New Issue
Block a user