player: more aspect ratio

This commit is contained in:
Yuriy Liskov
2022-07-28 20:26:51 +03:00
parent ccf9587178
commit 99cf1df9c1
2 changed files with 2 additions and 0 deletions

View File

@@ -28,6 +28,7 @@ public interface PlaybackEngineController {
float ASPECT_RATIO_1_1 = 1f;
float ASPECT_RATIO_4_3 = 1.33f;
float ASPECT_RATIO_5_4 = 1.25f;
float ASPECT_RATIO_16_8_1 = 1.9753f;
float ASPECT_RATIO_16_9 = 1.77f;
float ASPECT_RATIO_16_10 = 1.6f;
float ASPECT_RATIO_21_9 = 2.33f;

View File

@@ -323,6 +323,7 @@ public class AppDialogUtil {
pairs.put("1:1", PlaybackEngineController.ASPECT_RATIO_1_1);
pairs.put("4:3", PlaybackEngineController.ASPECT_RATIO_4_3);
pairs.put("5:4", PlaybackEngineController.ASPECT_RATIO_5_4);
pairs.put("16:8.1 (1.9753:1)", PlaybackEngineController.ASPECT_RATIO_16_8_1);
pairs.put("16:9", PlaybackEngineController.ASPECT_RATIO_16_9);
pairs.put("16:10", PlaybackEngineController.ASPECT_RATIO_16_10);
pairs.put("21:9 (2.33:1)", PlaybackEngineController.ASPECT_RATIO_21_9);