NAME: synth->init() DESCRIPTION: initialize synth struct */
| 53 | DESCRIPTION: initialize synth struct |
| 54 | */ |
| 55 | void mad_synth_init(struct mad_synth *synth) |
| 56 | { |
| 57 | stack(__FUNCTION__,__FILE__,__LINE__); |
| 58 | mad_synth_mute(synth); |
| 59 | |
| 60 | synth->phase = 0; |
| 61 | |
| 62 | synth->pcm.samplerate = 0; |
| 63 | synth->pcm.channels = 0; |
| 64 | synth->pcm.length = 0; |
| 65 | } |
| 66 | |
| 67 | /* |
| 68 | NAME: synth->mute() |
no test coverage detected