diff options
author | malc <av1474@comtv.ru> | 2009-08-11 20:48:02 +0400 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2009-08-11 20:51:24 +0400 |
commit | 98f9f48ccb1276d2fc3bcf4592cc1febea796e4b (patch) | |
tree | 5fffa93acfc46285ef92a8d30293a53c7d35cdd0 /audio/paaudio.c | |
parent | 1a40d5e23577b955265fe12a2b7b5222ec2df0f2 (diff) |
Aesthetics
Reformat to make item borders more visible
Fix cases of stray tabs and vertical misalignments
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'audio/paaudio.c')
-rw-r--r-- | audio/paaudio.c | 50 |
1 files changed, 30 insertions, 20 deletions
diff --git a/audio/paaudio.c b/audio/paaudio.c index dbc40813ee..cf415f4402 100644 --- a/audio/paaudio.c +++ b/audio/paaudio.c @@ -466,26 +466,36 @@ static void qpa_audio_fini (void *opaque) } struct audio_option qpa_options[] = { - {.name = "SAMPLES", - .tag = AUD_OPT_INT, - .valp = &conf.samples, - .descr = "buffer size in samples"}, - {.name = "DIVISOR", - .tag = AUD_OPT_INT, - .valp = &conf.divisor, - .descr = "threshold divisor"}, - {.name = "SERVER", - .tag = AUD_OPT_STR, - .valp = &conf.server, - .descr = "server address"}, - {.name = "SINK", - .tag = AUD_OPT_STR, - .valp = &conf.sink, - .descr = "sink device name"}, - {.name = "SOURCE", - .tag = AUD_OPT_STR, - .valp = &conf.source, - .descr = "source device name"}, + { + .name = "SAMPLES", + .tag = AUD_OPT_INT, + .valp = &conf.samples, + .descr = "buffer size in samples" + }, + { + .name = "DIVISOR", + .tag = AUD_OPT_INT, + .valp = &conf.divisor, + .descr = "threshold divisor" + }, + { + .name = "SERVER", + .tag = AUD_OPT_STR, + .valp = &conf.server, + .descr = "server address" + }, + { + .name = "SINK", + .tag = AUD_OPT_STR, + .valp = &conf.sink, + .descr = "sink device name" + }, + { + .name = "SOURCE", + .tag = AUD_OPT_STR, + .valp = &conf.source, + .descr = "source device name" + }, { /* End of list */ } }; |