--- in conference.cxx
void ConferenceMember::RemoveVideoSource(ConferenceMemberId id)
{
PAssert(videoMixer != NULL, "attempt to add video source to NULL video mixer");
videoMixer->AddVideoSource(id, *this);
}
must be?
void ConferenceMember::RemoveVideoSource(ConferenceMemberId id)
{
PAssert(videoMixer != NULL, "attempt to remove video source from NULL video mixer");
videoMixer->RemoveVideoSource(id, *this);
}