Back Camera in Video Chat

sundar

New Member
Hello,
In default streaming sample there is no option to switch back camera and I have used the code that given by you to switch the camera
Here I have attached my code files please refer it and give your feedback
Thanks
 

Attachments

Max

Administrator
Staff member
Hello
We have created internal case WCS-1294
We will inform you once we have any findings.
 

Max

Administrator
Staff member
Hello
PreviewActivity.java, line 49
Code:
remoteRender.setMirror(false);
Try to set this to false or remove this line at all. This function is mirroring the camera.
PublishActivity, line 60
Code:
localRender.setMirror(false);
You can also remove this function because it affects displaying because
SurfaceViewRenderer::mirror == false by default.
 
Top