Mercurial > hg > xemacs-beta
comparison src/sgiplay.c @ 444:576fb035e263 r21-2-37
Import from CVS: tag r21-2-37
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:36:19 +0200 |
parents | abe6d1db359e |
children | 183866b06e0b |
comparison
equal
deleted
inserted
replaced
443:a8296e22da4e | 444:576fb035e263 |
---|---|
326 { | 326 { |
327 unsigned char * limit; | 327 unsigned char * limit; |
328 if (ac == (AudioContext) 0) | 328 if (ac == (AudioContext) 0) |
329 return; | 329 return; |
330 | 330 |
331 data = ac->ac_data; | 331 data = (unsigned char *) ac->ac_data; |
332 limit = data + ac->ac_size; | 332 limit = data + ac->ac_size; |
333 while (data < limit) | 333 while (data < limit) |
334 { | 334 { |
335 unsigned char * chunklimit = data + CHUNKSIZE; | 335 unsigned char * chunklimit = data + CHUNKSIZE; |
336 | 336 |