Mercurial > SDL_sound_CoreAudio
comparison decoders/raw.c @ 62:b13fafb976be
Changed _D macro to DBGSND.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Mon, 24 Sep 2001 15:31:25 +0000 |
parents | ea58bc3b15d7 |
children | 40006625142a |
comparison
equal
deleted
inserted
replaced
61:7d3a6ea7f1f0 | 62:b13fafb976be |
---|---|
110 { | 110 { |
111 Sound_SetError("RAW: invalid desired format."); | 111 Sound_SetError("RAW: invalid desired format."); |
112 return(0); | 112 return(0); |
113 } /* if */ | 113 } /* if */ |
114 | 114 |
115 _D(("RAW: Accepting data stream.\n")); | 115 SNDDBG(("RAW: Accepting data stream.\n")); |
116 | 116 |
117 /* | 117 /* |
118 * We never convert raw samples; what you ask for is what you get. | 118 * We never convert raw samples; what you ask for is what you get. |
119 */ | 119 */ |
120 memcpy(&sample->actual, &sample->desired, sizeof (Sound_AudioInfo)); | 120 memcpy(&sample->actual, &sample->desired, sizeof (Sound_AudioInfo)); |