Replaced a few memset/memcpy calls with SDL_memset/SDL_memcpy.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402415
This commit is contained in:
Ryan C. Gordon 2007-07-05 02:47:54 +00:00
parent 8f06683bc6
commit 18d893d82a

View file

@ -21,12 +21,12 @@ play_through_once(void *arg, Uint8 * stream, int len)
if (cpy > waveleft) if (cpy > waveleft)
cpy = waveleft; cpy = waveleft;
memcpy(stream, waveptr, cpy); SDL_memcpy(stream, waveptr, cpy);
len -= cpy; len -= cpy;
cbd->soundpos += cpy; cbd->soundpos += cpy;
if (len > 0) { if (len > 0) {
stream += cpy; stream += cpy;
memset(stream, spec.silence, len); SDL_memset(stream, spec.silence, len);
cbd->done++; cbd->done++;
} }
} }
@ -51,7 +51,7 @@ test_multi_audio(int devcount)
printf("playing on device #%d: ('%s')...", i, devname); printf("playing on device #%d: ('%s')...", i, devname);
fflush(stdout); fflush(stdout);
memset(&cbd[0], '\0', sizeof(callback_data)); SDL_memset(&cbd[0], '\0', sizeof(callback_data));
spec.userdata = &cbd[0]; spec.userdata = &cbd[0];
cbd[0].dev = SDL_OpenAudioDevice(devname, 0, &spec, NULL); cbd[0].dev = SDL_OpenAudioDevice(devname, 0, &spec, NULL);
if (cbd[0].dev == 0) { if (cbd[0].dev == 0) {
@ -66,7 +66,7 @@ test_multi_audio(int devcount)
} }
} }
memset(cbd, '\0', sizeof(cbd)); SDL_memset(cbd, '\0', sizeof(cbd));
printf("playing on all devices...\n"); printf("playing on all devices...\n");
for (i = 0; i < devcount; i++) { for (i = 0; i < devcount; i++) {