aucat: remove useless variable assignments in .au header parsing code.

From Michael W. Bombardieri, thanks.
This commit is contained in:
Alexandre Ratchov 2017-11-23 07:32:25 +01:00
parent 8b24905d2c
commit 99357b1841
1 changed files with 0 additions and 3 deletions

View File

@ -686,17 +686,14 @@ afile_au_readhdr(struct afile *f)
case AU_FMT_ULAW:
f->fmt = AFILE_FMT_ULAW;
f->par.bits = 8;
f->par.bps = 1;
break;
case AU_FMT_ALAW:
f->fmt = AFILE_FMT_ALAW;
f->par.bits = 8;
f->par.bps = 1;
break;
case AU_FMT_FLOAT:
f->fmt = AFILE_FMT_FLOAT;
f->par.bits = 32;
f->par.bps = 4;
break;
default:
log_puts(f->path);