From 5419334f1e14fdc27d2dd34cd9282d3aa0a2ff68 Mon Sep 17 00:00:00 2001 From: Alexandre Ratchov Date: Fri, 9 Aug 2013 13:08:06 +0200 Subject: [PATCH] align comments --- libsndio/sio_open.3 | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/libsndio/sio_open.3 b/libsndio/sio_open.3 index 0d197f9..8b543a8 100644 --- a/libsndio/sio_open.3 +++ b/libsndio/sio_open.3 @@ -147,21 +147,21 @@ The set of parameters of the stream that can be controlled is given by the following structure: .Bd -literal struct sio_par { - unsigned int bits; /* bits per sample */ - unsigned int bps; /* bytes per sample */ - unsigned int sig; /* 1 = signed, 0 = unsigned int */ - unsigned int le; /* 1 = LE, 0 = BE byte order */ - unsigned int msb; /* 1 = MSB, 0 = LSB aligned */ - unsigned int rchan; /* number channels for recording */ - unsigned int pchan; /* number channels for playback */ - unsigned int rate; /* frames per second */ + unsigned int bits; /* bits per sample */ + unsigned int bps; /* bytes per sample */ + unsigned int sig; /* 1 = signed, 0 = unsigned int */ + unsigned int le; /* 1 = LE, 0 = BE byte order */ + unsigned int msb; /* 1 = MSB, 0 = LSB aligned */ + unsigned int rchan; /* number channels for recording */ + unsigned int pchan; /* number channels for playback */ + unsigned int rate; /* frames per second */ unsigned int appbufsz; /* minimum buffer size without xruns */ - unsigned int bufsz; /* end-to-end buffer size (read-only) */ - unsigned int round; /* optimal buffer size divisor */ + unsigned int bufsz; /* end-to-end buffer size (read-only) */ + unsigned int round; /* optimal buffer size divisor */ #define SIO_IGNORE 0 /* pause during xrun */ #define SIO_SYNC 1 /* resync after xrun */ #define SIO_ERROR 2 /* terminate on xrun */ - unsigned int xrun; /* what to do on overrun/underrun */ + unsigned int xrun; /* what to do on overrun/underrun */ }; .Ed .Pp @@ -307,7 +307,7 @@ Parameters of different configurations usable together. .Bd -literal struct sio_cap { - struct sio_enc { /* allowed encodings */ + struct sio_enc { /* allowed encodings */ unsigned int bits; unsigned int bps; unsigned int sig; @@ -319,10 +319,10 @@ struct sio_cap { unsigned int rate[SIO_NRATE]; /* allowed rates */ unsigned int nconf; /* num. of confs[] */ struct sio_conf { - unsigned int enc; /* bitmask of enc[] indexes */ - unsigned int rchan; /* bitmask of rchan[] indexes */ - unsigned int pchan; /* bitmask of pchan[] indexes */ - unsigned int rate; /* bitmask of rate[] indexes */ + unsigned int enc; /* bitmask of enc[] indexes */ + unsigned int rchan; /* bitmask of rchan[] indexes */ + unsigned int pchan; /* bitmask of pchan[] indexes */ + unsigned int rate; /* bitmask of rate[] indexes */ } confs[SIO_NCONF]; }; .Ed