mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avfilter/af_apulsator: remove unecessary initializer from layouts
Fixes compilation with msvc. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
3d0d0f68d5
commit
ef6a5c98fb
@ -194,8 +194,8 @@ static int query_formats(const AVFilterContext *ctx,
|
||||
AV_SAMPLE_FMT_NONE,
|
||||
};
|
||||
static const AVChannelLayout layouts[] = {
|
||||
(AVChannelLayout)AV_CHANNEL_LAYOUT_STEREO,
|
||||
(AVChannelLayout){ .nb_channels = 0 },
|
||||
AV_CHANNEL_LAYOUT_STEREO,
|
||||
{ .nb_channels = 0 },
|
||||
};
|
||||
|
||||
int ret;
|
||||
|
Loading…
Reference in New Issue
Block a user