1
0
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:
James Almer 2024-09-05 12:34:36 -03:00
parent 3d0d0f68d5
commit ef6a5c98fb

View File

@ -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;