diff options
| author | Sebastiano Barezzi <barezzisebastiano@gmail.com> | 2022-12-09 02:17:27 +0100 |
|---|---|---|
| committer | Ralf Luther <luther.ralf@gmail.com> | 2024-05-19 16:54:41 +0200 |
| commit | f09278fcd567e196541c1ceedcbbc2a09919fcd4 (patch) | |
| tree | 9bf8b5af71959cf7a386de5e17f0224dd21f2e2e | |
| parent | 7bf035fddcdc441cc81e034bf0445214622ea77a (diff) | |
guacamole: overlay: Configure additional camera framerates
Change-Id: I51efca86d2169c01fb96af97ef9fe250e2b221ed
| -rw-r--r-- | overlay-aicp/packages/apps/Aperture/app/src/main/res/values/config.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/overlay-aicp/packages/apps/Aperture/app/src/main/res/values/config.xml b/overlay-aicp/packages/apps/Aperture/app/src/main/res/values/config.xml index 3d3daea..8e518f5 100644 --- a/overlay-aicp/packages/apps/Aperture/app/src/main/res/values/config.xml +++ b/overlay-aicp/packages/apps/Aperture/app/src/main/res/values/config.xml @@ -8,4 +8,31 @@ <item>4</item> <item>5</item> </string-array> + + <!-- An array of triplets made of (camera ID, qualities, framerate). + These video modes will be added to the available + quality/framerate combinations of a camera device. + Make sure the device is able to handle those configurations + and maintain a stable framerate at any condition. + Note that you can't add video qualities that aren't + exposed by the camera, only new framerates. + Valid values of resolution are: + - "sd" (480p) + - "hd" (720p) + - "fhd" (1080p) + - "uhd" (2160p) + Valid values of framerate are: + - "24" + - "30" + - "60" + Example: + <string-array name="config_additionalVideoConfigurations"> + <item>0</item> <item>sd|hd|fhd</item> <item>60</item> + </string-array> + --> + <string-array name="config_additionalVideoConfigurations"> + <!-- No additional configuration is added by default. --> + <item>0</item> <item>sd|hd|fhd|uhd</item> <item>60</item> + <item>2</item> <item>sd|hd|fhd</item> <item>60</item> + </string-array> </resources> |
