Closed GoogleCodeExporter closed 9 years ago
In Class FileVoiceChannel and FileAudioChannel, the function:
virtual bool SetSendBandwidth(bool autobw, int bps)
do nothing but just return true
Original comment by mrh...@gmail.com
on 9 Nov 2010 at 7:37
Please use CallOptions to set bandwidth.
The CallOptions is defined in the "mediasessionclient.h" file:
struct CallOptions {
CallOptions() :
is_video(false),
is_muc(false),
video_bandwidth(kAutoBandwidth) {
}
bool is_video;
bool is_muc;
// bps. -1 == auto.
int video_bandwidth;
};
Original comment by jun...@google.com
on 10 Nov 2010 at 4:33
Original issue reported on code.google.com by
mrh...@gmail.com
on 9 Nov 2010 at 7:35