Revision 1ea879e5 audio/mixeng.c

b/audio/mixeng.c
290 290
    uint64_t opos;
291 291
    uint64_t opos_inc;
292 292
    uint32_t ipos;              /* position in the input stream (integer) */
293
    st_sample_t ilast;          /* last sample in the input stream */
293
    struct st_sample ilast;          /* last sample in the input stream */
294 294
};
295 295

  
296 296
/*
......
329 329
    qemu_free (opaque);
330 330
}
331 331

  
332
void mixeng_clear (st_sample_t *buf, int len)
332
void mixeng_clear (struct st_sample *buf, int len)
333 333
{
334
    memset (buf, 0, len * sizeof (st_sample_t));
334
    memset (buf, 0, len * sizeof (struct st_sample));
335 335
}

Also available in: Unified diff