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