5f38c8d1b8
- Add a room list to ConnectActivity with buttons to add/remove rooms. - Add loopback call button. - Add option to toggle full screen / letterbox video. - Add camera fps settings. - Fix device to landscape orientation for HD video until issue 3936 will be fixed. - Fix a few crashes by avoiding calling peer connection and GAE signaling function while connection is closing. - Better handling GAE channel error - catch channel exceptions and display dialog with error messages. BUG=3939, 3935 R=kjellander@webrtc.org, pthatcher@webrtc.org, tkchin@webrtc.org Review URL: https://webrtc-codereview.appspot.com/26979004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7601 4adac7df-926f-26a2-2b94-8c16560cd09d
23 lines
603 B
XML
23 lines
603 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
<string-array name="videoResolutions">
|
|
<item>Default</item>
|
|
<item>HD (1280 x 720)</item>
|
|
<item>VGA (640 x 480)</item>
|
|
<item>QVGA (320 x 240)</item>
|
|
</string-array>
|
|
<string-array name="videoResolutionsValues">
|
|
<item>Default</item>
|
|
<item>1280 x 720</item>
|
|
<item>640 x 480</item>
|
|
<item>320 x 240</item>
|
|
</string-array>
|
|
|
|
<string-array name="cameraFps">
|
|
<item>Default</item>
|
|
<item>30 fps</item>
|
|
<item>15 fps</item>
|
|
</string-array>
|
|
|
|
</resources>
|