comparison src/madplug/decoder.c @ 1998:8f3188746b64

chase last changeset in aud
author William Pitcock <nenolod@atheme.org>
date Mon, 08 Oct 2007 02:02:02 -0500
parents a260bd1beef0
children 2f2ffbc2d04d
comparison
equal deleted inserted replaced
1997:9d0f5be50219 1998:8f3188746b64
153 } 153 }
154 } 154 }
155 assert(pos == olen); 155 assert(pos == olen);
156 if (!info->playback->playing) 156 if (!info->playback->playing)
157 return; 157 return;
158 produce_audio(info->playback->output->written_time(), 158 info->playback->pass_audio(info->playback,
159 FMT_S16_LE, MAD_NCHANNELS(header), olen, output, &(info->playback->playing)); 159 FMT_S16_LE, MAD_NCHANNELS(header), olen, output, &(info->playback->playing));
160 if (!info->playback->playing) 160 if (!info->playback->playing)
161 return; 161 return;
162 g_free(output); 162 g_free(output);
163 } 163 }