From cb8d71734ca12413893e4f5ba4cdd94840150665 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Tue, 8 Sep 2015 23:21:15 +0200 Subject: [PATCH] avfilter/volume: drop useless trailing comma --- libavfilter/af_volume.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/af_volume.c b/libavfilter/af_volume.c index 57c6af1b33..16e994c93f 100644 --- a/libavfilter/af_volume.c +++ b/libavfilter/af_volume.c @@ -83,7 +83,7 @@ static const AVOption volume_options[] = { OFFSET(replaygain_preamp), AV_OPT_TYPE_DOUBLE, { .dbl = 0.0 }, -15.0, 15.0, A|F }, { "replaygain_noclip", "Apply replaygain clipping prevention", OFFSET(replaygain_noclip), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, A|F }, - { NULL }, + { NULL } }; AVFILTER_DEFINE_CLASS(volume);