Hi,
I'v being using SetBandwidth component for years and after I look inside of
it, mistake found.

It use "upRate" variable (seems like 'upload bandwidth') for camera and
microphone bandwidth (seems like true) that means clientToServer value
Also it has "downRate" - bandwidth for download, that means serberToClient
bandwidth.

But at 'setRates' it call this.nc.call(this.prefix + "setRates", null,
1000*up/8, 1000*down/8);

up is first argument, down is second.

Take a look at Flash media component actionscript. It calls
"client.setBandwidthLimit( up, down );"

Take a look at 'setBandwidthLimit' specification
clientObject.setBandwidthLimit(iServerToClient, iClientToServer),
but component pass clientToserver and serverToclient

Thanks