Displaying 2 results from an estimated 2 matches for "componenttype".
2013 Mar 15
3
advice on module organization
...odule(components => [component1,component2], "systemType" =>
"foobar")
}
node ''foo2.example.com'' {
include module(components => [component1,component3], "systemType" =>
"foobar2")
}
In the above illustration, the value of componentType can determine which
files to load, as well as a bunch of variables (40-60 variables) which
would be used for things like ensuring directories are present, ownership,
users installed, etc..
I was thinking that each component would be a class, which is fine in
itself, but my real problem is the...
2012 Sep 30
0
Speex (in ios) really poor quality (and robotic) sound
...dio category");
XThrowIfError(AudioSessionAddPropertyListener(kAudioSessionProperty_AudioRouteChange, propListener, self), "couldn't set property listener");
// Describe audio component
AudioComponentDescription desc;
desc.componentType = kAudioUnitType_Output;
desc.componentSubType = kAudioUnitSubType_RemoteIO;
desc.componentFlags = 0;
desc.componentFlagsMask = 0;
desc.componentManufacturer = kAudioUnitManufacturer_Apple;
// Get component
AudioCo...