avfilter/af_apulsator: remove unecessary initializer from layouts

Fixes compilation with msvc.

Signed-off-by: James Almer <jamrial@gmail.com>
release/7.1
James Almer 4 months ago
parent 3d0d0f68d5
commit ef6a5c98fb
  1. 4
      libavfilter/af_apulsator.c

@ -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…
Cancel
Save