Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: webrtc/examples/androidapp/res/values/arrays.xml

Issue 2520313002: Add Full HD and 4K camera resolutions to AppRTCMobile Android. (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <resources> 2 <resources>
3 <string-array name="videoResolutions"> 3 <string-array name="videoResolutions">
4 <item>Default</item> 4 <item>Default</item>
5 <item>4K (3840 x 2160)</item>
6 <item>Full HD (1920 x 1080)</item>
5 <item>HD (1280 x 720)</item> 7 <item>HD (1280 x 720)</item>
6 <item>VGA (640 x 480)</item> 8 <item>VGA (640 x 480)</item>
7 <item>QVGA (320 x 240)</item> 9 <item>QVGA (320 x 240)</item>
8 </string-array> 10 </string-array>
9 11
10 <string-array name="videoResolutionsValues"> 12 <string-array name="videoResolutionsValues">
11 <item>Default</item> 13 <item>Default</item>
14 <item>3840 x 2160</item>
15 <item>1920 x 1080</item>
12 <item>1280 x 720</item> 16 <item>1280 x 720</item>
13 <item>640 x 480</item> 17 <item>640 x 480</item>
14 <item>320 x 240</item> 18 <item>320 x 240</item>
15 </string-array> 19 </string-array>
16 20
17 <string-array name="cameraFps"> 21 <string-array name="cameraFps">
18 <item>Default</item> 22 <item>Default</item>
19 <item>30 fps</item> 23 <item>30 fps</item>
20 <item>15 fps</item> 24 <item>15 fps</item>
21 </string-array> 25 </string-array>
(...skipping 24 matching lines...) Expand all
46 <item>auto</item> 50 <item>auto</item>
47 <item>true</item> 51 <item>true</item>
48 <item>false</item> 52 <item>false</item>
49 </string-array> 53 </string-array>
50 54
51 <string-array name="roomListContextMenu"> 55 <string-array name="roomListContextMenu">
52 <item>Remove favorite</item> 56 <item>Remove favorite</item>
53 </string-array> 57 </string-array>
54 58
55 </resources> 59 </resources>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698