Revert r10334: Corrects the change of direction for audio and video stream when putting on hold.

cusax-fix
Vincent Lucas 13 years ago
parent 2d73d5a164
commit a31b81d1d8

@ -328,7 +328,7 @@ public void setLocallyOnHold(boolean locallyOnHold)
{
audioStream.setDirection(
audioStream.getDirection().and(
MediaDirection.RECVONLY));
MediaDirection.SENDONLY));
audioStream.setMute(locallyOnHold);
}
@ -338,7 +338,7 @@ public void setLocallyOnHold(boolean locallyOnHold)
{
videoStream.setDirection(
videoStream.getDirection().and(
MediaDirection.RECVONLY));
MediaDirection.SENDONLY));
videoStream.setMute(locallyOnHold);
}
}

Loading…
Cancel
Save