Java Code Examples for android.media.CamcorderProfile#QUALITY_480P
The following examples show how to use
android.media.CamcorderProfile#QUALITY_480P .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: CameraSession.java From TelePlus-Android with GNU General Public License v2.0 | 4 votes |
private int getHigh() { if ("LGE".equals(Build.MANUFACTURER) && "g3_tmo_us".equals(Build.PRODUCT)) { return CamcorderProfile.QUALITY_480P; } return CamcorderProfile.QUALITY_HIGH; }
Example 2
Source File: CameraSession.java From TelePlus-Android with GNU General Public License v2.0 | 4 votes |
private int getHigh() { if ("LGE".equals(Build.MANUFACTURER) && "g3_tmo_us".equals(Build.PRODUCT)) { return CamcorderProfile.QUALITY_480P; } return CamcorderProfile.QUALITY_HIGH; }
Example 3
Source File: CameraSession.java From KrGallery with GNU General Public License v2.0 | 4 votes |
private int getHigh() { if ("LGE".equals(Build.MANUFACTURER) && "g3_tmo_us".equals(Build.PRODUCT)) { return CamcorderProfile.QUALITY_480P; } return CamcorderProfile.QUALITY_HIGH; }
Example 4
Source File: CameraSession.java From Telegram-FOSS with GNU General Public License v2.0 | 4 votes |
private int getHigh() { if ("LGE".equals(Build.MANUFACTURER) && "g3_tmo_us".equals(Build.PRODUCT)) { return CamcorderProfile.QUALITY_480P; } return CamcorderProfile.QUALITY_HIGH; }
Example 5
Source File: CameraSession.java From Telegram with GNU General Public License v2.0 | 4 votes |
private int getHigh() { if ("LGE".equals(Build.MANUFACTURER) && "g3_tmo_us".equals(Build.PRODUCT)) { return CamcorderProfile.QUALITY_480P; } return CamcorderProfile.QUALITY_HIGH; }