diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-12-18 17:16:03 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-12-18 17:16:03 +0100 |
commit | c2640146e06faa7608a6bfecc36fc66d6a920e6e (patch) | |
tree | f28c9c458054ec59e589b807463b0c82f15296ae | |
parent | b7e085a28893b5645d8f2b91e866014ab8de4a3b (diff) | |
download | ffmpeg-c2640146e06faa7608a6bfecc36fc66d6a920e6e.tar.gz |
apad: fix apad_options formating
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/af_apad.c | 3 |
1 files changed, 1 insertions, 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 }, }; |