From 56315df32c489676c3add6c1305c53cfeaae6f2c Mon Sep 17 00:00:00 2001 From: Martin Vignali Date: Mon, 16 Apr 2018 11:33:14 +0200 Subject: [PATCH] avfilter/showvolume : cosmetic move bracket after func declaration to a new line --- libavfilter/avf_showvolume.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavfilter/avf_showvolume.c b/libavfilter/avf_showvolume.c index fe8a95a07b..6b553c4eba 100644 --- a/libavfilter/avf_showvolume.c +++ b/libavfilter/avf_showvolume.c @@ -263,7 +263,8 @@ static void drawtext(AVFrame *pic, int x, int y, const char *txt, int o) } } -static void clear_picture(ShowVolumeContext *s, AVFilterLink *outlink) { +static void clear_picture(ShowVolumeContext *s, AVFilterLink *outlink) +{ int i, j; const uint32_t bg = (uint32_t)(s->bgopacity * 255) << 24;