fit in 80 columns

This commit is contained in:
Alexandre Ratchov 2016-01-08 17:26:47 +01:00
parent e22e6a1b26
commit 105db99d30
2 changed files with 5 additions and 4 deletions

View File

@ -296,7 +296,8 @@ resamp_do(struct resamp *p, adata_t *in, adata_t *out, int todo)
* initialize resampler with ibufsz/obufsz factor and "nch" channels
*/
void
resamp_init(struct resamp *p, unsigned int iblksz, unsigned int oblksz, int nch)
resamp_init(struct resamp *p, unsigned int iblksz,
unsigned int oblksz, int nch)
{
unsigned int i;

View File

@ -105,9 +105,9 @@ typedef int adata_t;
struct aparams {
unsigned int bps; /* bytes per sample */
unsigned int bits; /* actually used bits */
unsigned int le; /* 1 if little endian, 0 if big endian */
unsigned int le; /* 1 if little endian, else be */
unsigned int sig; /* 1 if signed, 0 if unsigned */
unsigned int msb; /* 1 if msb justified, 0 if lsb justified */
unsigned int msb; /* 1 if msb justified, else lsb */
};
struct resamp {