remove forgotten debug printfs

This commit is contained in:
Alexandre Ratchov 2016-06-08 06:41:08 +02:00
parent 00ffc8f5ab
commit b5ed742559
2 changed files with 0 additions and 3 deletions

View File

@ -304,8 +304,6 @@ resamp_init(struct resamp *p, unsigned int iblksz,
p->iblksz = iblksz;
p->oblksz = oblksz;
p->diff = 0;
p->idelta = 0;
p->odelta = 0;
p->nch = nch;
p->ctx_start = 0;
for (i = 0; i < NCHAN_MAX * RESAMP_NCTX; i++)

View File

@ -116,7 +116,6 @@ struct resamp {
adata_t ctx[NCHAN_MAX * RESAMP_NCTX];
unsigned int iblksz, oblksz;
int diff;
int idelta, odelta; /* remainder of ipos/opos */
int nch;
};