diff options
author | Martin Vignali <martin.vignali@gmail.com> | 2018-04-16 11:33:14 +0200 |
---|---|---|
committer | Martin Vignali <martin.vignali@gmail.com> | 2018-04-16 11:35:07 +0200 |
commit | 56315df32c489676c3add6c1305c53cfeaae6f2c (patch) | |
tree | 20043625d6958e1f9688e5677c8e902b522a230e | |
parent | fd10a6e2f21f9cadc44a0415e204ea82940cd089 (diff) | |
download | ffmpeg-56315df32c489676c3add6c1305c53cfeaae6f2c.tar.gz |
avfilter/showvolume : cosmetic move bracket after func declaration to a new line
-rw-r--r-- | libavfilter/avf_showvolume.c | 3 |
1 files changed, 2 insertions, 1 deletions
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; |