~ubuntu-dev/mplayer/ubuntu-feisty

« back to all changes in this revision

Viewing changes to libao2/ao_openal.c

  • Committer: William Grant
  • Date: 2007-02-03 03:16:07 UTC
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: william.grant@ubuntu.org.au-20070203031607-08gc2ompbz6spt9i
Update to 1.0rc1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
96
96
  ao_data.bps = channels * rate * 2;
97
97
  ao_data.buffersize = CHUNK_SIZE * NUM_BUF;
98
98
  ao_data.outburst = channels * CHUNK_SIZE;
99
 
  tmpbuf = (int16_t *)malloc(CHUNK_SIZE);
 
99
  tmpbuf = malloc(CHUNK_SIZE);
100
100
  return 1;
101
101
 
102
102
err_out: