ffmpeg | branch: master | James Almer <jamr...@gmail.com> | Thu Sep 5 12:34:36 2024 -0300| [ef6a5c98fb5222ce3f8c7a1cca1dabeca83f8af6] | committer: James Almer
avfilter/af_apulsator: remove unecessary initializer from layouts Fixes compilation with msvc. Signed-off-by: James Almer <jamr...@gmail.com> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ef6a5c98fb5222ce3f8c7a1cca1dabeca83f8af6 --- libavfilter/af_apulsator.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/af_apulsator.c b/libavfilter/af_apulsator.c index 8e01cd6feb..4272e5f3a0 100644 --- a/libavfilter/af_apulsator.c +++ b/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; _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".