var fDesc=new Array();
fDesc[0] = "DSP Conductor is a software development kit (SDK) for audio digital signal processing (DSP) applications. Audio processing is defined in terms of code elements. Elements have inputs, outputs, controls, and indicators. Elements are “wired” together and their controls adjusted within the DSP Conductor environment to produce the desired audio processing results within the DSP code that is generated.
DSP Conductor generates the signal processing instructions (code) but the actual audio processing is performed by a Cirrus Logic DSP chip.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}