From c2640146e06faa7608a6bfecc36fc66d6a920e6e Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 18 Dec 2012 17:16:03 +0100 Subject: [PATCH] apad: fix apad_options formating Signed-off-by: Michael Niedermayer --- libavfilter/af_apad.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libavfilter/af_apad.c b/libavfilter/af_apad.c index f587cfe2ce..823aa969fe 100644 --- a/libavfilter/af_apad.c +++ b/libavfilter/af_apad.c @@ -46,8 +46,7 @@ typedef struct { #define A AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM static const AVOption apad_options[] = { - { "packet_size", "set silence packet size", - OFFSET(packet_size), AV_OPT_TYPE_INT, { .i64 = 4096 }, 0, INT_MAX, A }, + { "packet_size", "set silence packet size", OFFSET(packet_size), AV_OPT_TYPE_INT, { .i64 = 4096 }, 0, INT_MAX, A }, { NULL }, };