I setup an AUGraph wich contains several audio unit.
I know that when I call AUGraphStart() the graph starts the rendering of all the audio unit. But I would like to be able to start the rendering of one specific AUFilePlayer.
Is it possible?
UPDATE
I saw in comment that my question lacked of details. I have the current setup for my AUGraph:
AUFilePlayer -> AUMixer -> AUOutput
I setup the AUFilePlayer with a specific AudioFileID.
When I start the graph I would like just to "start" the graph without having any sound. And later I would like to do something like: AUFilePlayer.Play() to start making sounds.
I don't know if it's possible...
UPDATE: workaround found
I think I found a workaround for this. See my answer for my details.