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/dsoundaudio.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/dsoundaudio.c')
-rw-r--r-- | audio/dsoundaudio.c | 100 |
1 files changed, 60 insertions, 40 deletions
diff --git a/audio/dsoundaudio.c b/audio/dsoundaudio.c index 45c1dfd202..5376b596e4 100644 --- a/audio/dsoundaudio.c +++ b/audio/dsoundaudio.c @@ -1033,46 +1033,66 @@ static void *dsound_audio_init (void) } static struct audio_option dsound_options[] = { - {.name = "LOCK_RETRIES", - .tag = AUD_OPT_INT, - .valp = &conf.lock_retries, - .descr = "Number of times to attempt locking the buffer"}, - {.name = "RESTOURE_RETRIES", - .tag = AUD_OPT_INT, - .valp = &conf.restore_retries, - .descr = "Number of times to attempt restoring the buffer"}, - {.name = "GETSTATUS_RETRIES", - .tag = AUD_OPT_INT, - .valp = &conf.getstatus_retries, - .descr = "Number of times to attempt getting status of the buffer"}, - {.name = "SET_PRIMARY", - .tag = AUD_OPT_BOOL, - .valp = &conf.set_primary - .descr = "Set the parameters of primary buffer"}, - {.name = "LATENCY_MILLIS", - .tag = AUD_OPT_INT, - .valp = &conf.latency_millis, - .descr = "(undocumented)"}, - {.name = "PRIMARY_FREQ", - .tag = AUD_OPT_INT, - .valp = &conf.settings.freq, - .descr = "Primary buffer frequency"}, - {.name = "PRIMARY_CHANNELS", - .tag = AUD_OPT_INT, - .valp = &conf.settings.nchannels, - .descr = "Primary buffer number of channels (1 - mono, 2 - stereo)"}, - {.name = "PRIMARY_FMT", - .tag = AUD_OPT_FMT, - .valp = &conf.settings.fmt, - .descr = "Primary buffer format"}, - {.name = "BUFSIZE_OUT", - .tag = AUD_OPT_INT, - .valp = &conf.bufsize_out, - .descr = "(undocumented)"}, - {.name = "BUFSIZE_IN", - .tag = AUD_OPT_INT, - .valp = &conf.bufsize_in, - .descr = "(undocumented)"}, + { + .name = "LOCK_RETRIES", + .tag = AUD_OPT_INT, + .valp = &conf.lock_retries, + .descr = "Number of times to attempt locking the buffer" + }, + { + .name = "RESTOURE_RETRIES", + .tag = AUD_OPT_INT, + .valp = &conf.restore_retries, + .descr = "Number of times to attempt restoring the buffer" + }, + { + .name = "GETSTATUS_RETRIES", + .tag = AUD_OPT_INT, + .valp = &conf.getstatus_retries, + .descr = "Number of times to attempt getting status of the buffer" + }, + { + .name = "SET_PRIMARY", + .tag = AUD_OPT_BOOL, + .valp = &conf.set_primary + .descr = "Set the parameters of primary buffer" + }, + { + .name = "LATENCY_MILLIS", + .tag = AUD_OPT_INT, + .valp = &conf.latency_millis, + .descr = "(undocumented)" + }, + { + .name = "PRIMARY_FREQ", + .tag = AUD_OPT_INT, + .valp = &conf.settings.freq, + .descr = "Primary buffer frequency" + }, + { + .name = "PRIMARY_CHANNELS", + .tag = AUD_OPT_INT, + .valp = &conf.settings.nchannels, + .descr = "Primary buffer number of channels (1 - mono, 2 - stereo)" + }, + { + .name = "PRIMARY_FMT", + .tag = AUD_OPT_FMT, + .valp = &conf.settings.fmt, + .descr = "Primary buffer format" + }, + { + .name = "BUFSIZE_OUT", + .tag = AUD_OPT_INT, + .valp = &conf.bufsize_out, + .descr = "(undocumented)" + }, + { + .name = "BUFSIZE_IN", + .tag = AUD_OPT_INT, + .valp = &conf.bufsize_in, + .descr = "(undocumented)" + }, { /* End of list */ } }; |