summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-12-18 17:16:03 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-12-18 17:16:03 +0100
commitc2640146e06faa7608a6bfecc36fc66d6a920e6e (patch)
treef28c9c458054ec59e589b807463b0c82f15296ae
parentb7e085a28893b5645d8f2b91e866014ab8de4a3b (diff)
apad: fix apad_options formating
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavfilter/af_apad.c3
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 },
};