forked from FFmpeg/FFmpeg
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:
parent
ef6a5c98fb
commit
d98de855a8
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue