/cts/tests/tests/media/src/android/media/cts/ |
CamcorderProfileTest.java | 24 import android.media.CamcorderProfile; 36 CamcorderProfile.QUALITY_LOW, 37 CamcorderProfile.QUALITY_HIGH, 38 CamcorderProfile.QUALITY_QCIF, 39 CamcorderProfile.QUALITY_CIF, 40 CamcorderProfile.QUALITY_480P, 41 CamcorderProfile.QUALITY_720P, 42 CamcorderProfile.QUALITY_1080P, 43 CamcorderProfile.QUALITY_QVGA, 44 CamcorderProfile.QUALITY_2160P [all...] |
ClearKeySystemTest.java | 30 import android.media.CamcorderProfile; 302 return CamcorderProfile.hasProfile(CamcorderProfile.QUALITY_QCIF); 304 return CamcorderProfile.hasProfile(CamcorderProfile.QUALITY_QVGA); 306 return CamcorderProfile.hasProfile(CamcorderProfile.QUALITY_CIF); 308 return CamcorderProfile.hasProfile(CamcorderProfile.QUALITY_480P); 310 return CamcorderProfile.hasProfile(CamcorderProfile.QUALITY_720P) [all...] |
/frameworks/av/media/libmedia/include/media/ |
MediaProfiles.h | 255 struct CamcorderProfile { 256 CamcorderProfile() 264 CamcorderProfile(const CamcorderProfile& copy) { 273 ~CamcorderProfile() { 378 static CamcorderProfile* createCamcorderProfile( 394 static CamcorderProfile *createDefaultCamcorderQcifProfile(camcorder_quality quality); 395 static CamcorderProfile *createDefaultCamcorderCifProfile(camcorder_quality quality); 397 MediaProfiles::CamcorderProfile **lowProfile, 398 MediaProfiles::CamcorderProfile **lowSpecificProfile) [all...] |
/frameworks/base/media/java/android/media/ |
CamcorderProfile.java | 28 * CamcorderProfile contains two tracks: one for audio and one for video. 43 public class CamcorderProfile 164 * similarly according to this CamcorderProfile. 244 * {@link #videoBitRate} in the high speed CamcorderProfile, and the application intends to 251 * similarly according to this CamcorderProfile. 272 * advertises 240fps {@link #videoFrameRate} in the CamcorderProfile, and the application 277 * of {@link MediaFormat} similarly according to this CamcorderProfile. 325 public static CamcorderProfile get(int quality) { 388 public static CamcorderProfile get(int cameraId, int quality) { 470 private CamcorderProfile(int duration [all...] |
MediaRecorder.java | 477 * Uses the settings from a CamcorderProfile object for recording. This method should 479 * If a time lapse CamcorderProfile is used, audio related source or recording 482 * @param profile the CamcorderProfile to use 483 * @see android.media.CamcorderProfile 485 public void setProfile(CamcorderProfile profile) { 491 if (profile.quality >= CamcorderProfile.QUALITY_TIME_LAPSE_LOW && 492 profile.quality <= CamcorderProfile.QUALITY_TIME_LAPSE_QVGA) { [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/video/ |
CameraVideoActivity.java | 25 import android.media.CamcorderProfile; 156 // Step 3: set a CamcorderProfile 157 mMediaRecorder.setProfile(CamcorderProfile.get(mCurrentCameraId, mCurrentVideoSizeId)); 451 CamcorderProfile.QUALITY_LOW, 452 CamcorderProfile.QUALITY_HIGH, 453 CamcorderProfile.QUALITY_QCIF, 454 CamcorderProfile.QUALITY_QVGA, 455 CamcorderProfile.QUALITY_CIF, 456 CamcorderProfile.QUALITY_480P, 457 CamcorderProfile.QUALITY_720P [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/ |
MediaRecorderStressTestRunner.java | 19 import android.media.CamcorderProfile; 35 public static int mProfileQuality = CamcorderProfile.QUALITY_HIGH; 36 public static CamcorderProfile profile = CamcorderProfile.get(mCameraId, mProfileQuality);
|
/packages/apps/Camera2/src/com/android/camera/data/ |
VideoDataFactory.java | 20 import android.media.CamcorderProfile; 56 CamcorderProfile profile = CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH);
|
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/ |
MmsVideoRecorder.java | 20 import android.media.CamcorderProfile; 43 private final CamcorderProfile mCamcorderProfile; 49 CamcorderProfile.get(cameraIndex, CamcorderProfile.QUALITY_LOW); 82 // Copy settings from CamcorderProfile to MediaRecorder
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/ |
Camera2SwitchPreviewTest.java | 40 import android.media.CamcorderProfile; 118 CamcorderProfile.QUALITY_HIGH, 119 CamcorderProfile.QUALITY_2160P, 120 CamcorderProfile.QUALITY_1080P, 121 CamcorderProfile.QUALITY_720P, 122 CamcorderProfile.QUALITY_480P, 123 CamcorderProfile.QUALITY_CIF, 124 CamcorderProfile.QUALITY_QCIF, 125 CamcorderProfile.QUALITY_QVGA, 126 CamcorderProfile.QUALITY_LOW [all...] |
Camera2RecordingTest.java | 33 import android.media.CamcorderProfile; 89 CamcorderProfile.QUALITY_HIGH, 90 CamcorderProfile.QUALITY_2160P, 91 CamcorderProfile.QUALITY_1080P, 92 CamcorderProfile.QUALITY_720P, 93 CamcorderProfile.QUALITY_480P, 94 CamcorderProfile.QUALITY_CIF, 95 CamcorderProfile.QUALITY_QCIF, 96 CamcorderProfile.QUALITY_QVGA, 97 CamcorderProfile.QUALITY_LOW [all...] |
MediaRecorderStressTest.java | 31 import android.media.CamcorderProfile; 183 CamcorderProfile.hasProfile(CAMERA_ID, profile)); 184 CamcorderProfile camcorderProfile = CamcorderProfile.get(CAMERA_ID, profile); 185 videoEncoder = camcorderProfile.videoCodec; 186 audioEncoder = camcorderProfile.audioCodec; 187 frameRate = camcorderProfile.videoFrameRate; 188 videoWidth = camcorderProfile.videoFrameWidth; 189 videoHeight = camcorderProfile.videoFrameHeight [all...] |
/frameworks/av/media/libmedia/ |
MediaProfiles.cpp | 319 /*static*/ MediaProfiles::CamcorderProfile* 335 MediaProfiles::CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; 549 CamcorderProfile *profile = 550 new CamcorderProfile( 645 /*static*/ MediaProfiles::CamcorderProfile* 652 CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; 662 /*static*/ MediaProfiles::CamcorderProfile* 669 CamcorderProfile *profile = new MediaProfiles::CamcorderProfile [all...] |
/developers/build/prebuilts/gradle/MediaRecorder/Application/src/main/java/com/example/android/mediarecorder/ |
MainActivity.java | 22 import android.media.CamcorderProfile; 154 CamcorderProfile profile = CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH); 183 // Step 3: Set a CamcorderProfile (requires API Level 8 or higher)
|
/developers/samples/android/media/MediaRecorder/Application/src/main/java/com/example/android/mediarecorder/ |
MainActivity.java | 22 import android.media.CamcorderProfile; 154 CamcorderProfile profile = CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH); 183 // Step 3: Set a CamcorderProfile (requires API Level 8 or higher)
|
/development/samples/browseable/MediaRecorder/src/com.example.android.mediarecorder/ |
MainActivity.java | 22 import android.media.CamcorderProfile; 155 CamcorderProfile profile = CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH); 184 // Step 3: Set a CamcorderProfile (requires API Level 8 or higher)
|
/cts/tests/camera/src/android/hardware/camera2/cts/ |
RecordingTest.java | 28 import android.media.CamcorderProfile; 79 CamcorderProfile.QUALITY_HIGH, 80 CamcorderProfile.QUALITY_2160P, 81 CamcorderProfile.QUALITY_1080P, 82 CamcorderProfile.QUALITY_720P, 83 CamcorderProfile.QUALITY_480P, 84 CamcorderProfile.QUALITY_CIF, 85 CamcorderProfile.QUALITY_QCIF, 86 CamcorderProfile.QUALITY_QVGA, 87 CamcorderProfile.QUALITY_LOW [all...] |
RobustnessTest.java | 37 import android.media.CamcorderProfile; [all...] |
/packages/apps/Camera2/src/com/android/camera/settings/ |
SettingsUtil.java | 23 import android.media.CamcorderProfile; 96 /** The selected {@link CamcorderProfile} qualities. */ 136 CamcorderProfile.QUALITY_2160P, 137 CamcorderProfile.QUALITY_1080P, 138 CamcorderProfile.QUALITY_720P, 139 CamcorderProfile.QUALITY_480P, 140 CamcorderProfile.QUALITY_CIF, 141 CamcorderProfile.QUALITY_QVGA, 142 CamcorderProfile.QUALITY_QCIF 302 * @return The CamcorderProfile quality setting [all...] |
/packages/apps/LegacyCamera/src/com/android/camera/ |
CameraSettings.java | 26 import android.media.CamcorderProfile; 89 if (CamcorderProfile.hasProfile(cameraId, quality)) { 92 return Integer.toString(CamcorderProfile.QUALITY_HIGH); 299 // that of CamcorderProfile.java. 458 if (CamcorderProfile.hasProfile(mCameraId, CamcorderProfile.QUALITY_1080P)) { 459 supported.add(Integer.toString(CamcorderProfile.QUALITY_1080P)); 461 if (CamcorderProfile.hasProfile(mCameraId, CamcorderProfile.QUALITY_720P)) { 462 supported.add(Integer.toString(CamcorderProfile.QUALITY_720P)) [all...] |
/cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/ |
MediaDeviceInfo.java | 24 import android.media.CamcorderProfile;
|
/cts/tests/tests/mediastress/src/android/mediastress/cts/ |
MediaRecorderStressTest.java | 21 import android.media.CamcorderProfile; 63 private static int mProfileQuality = CamcorderProfile.QUALITY_HIGH; 64 private static CamcorderProfile profile = 65 CamcorderProfile.get(mCameraId, mProfileQuality); 89 CamcorderProfile profile = CamcorderProfile.get(cameraId, CamcorderProfile.QUALITY_HIGH);
|
/cts/tools/cts-device-info/src/com/android/cts/deviceinfo/ |
CameraDeviceInfo.java | 27 import android.media.CamcorderProfile; 412 store.addResult("profile_480p", CamcorderProfile.hasProfile(CamcorderProfile.QUALITY_480P)); 413 store.addResult("profile_720p", CamcorderProfile.hasProfile(CamcorderProfile.QUALITY_720P)); 414 store.addResult("profile_1080p", CamcorderProfile.hasProfile(CamcorderProfile.QUALITY_1080P)); 415 store.addResult("profile_cif", CamcorderProfile.hasProfile(CamcorderProfile.QUALITY_CIF)); 416 store.addResult("profile_qcif", CamcorderProfile.hasProfile(CamcorderProfile.QUALITY_QCIF)) [all...] |
/pdk/apps/TestingCamera/src/com/android/testingcamera/ |
TestingCamera.java | 29 import android.media.CamcorderProfile; 142 private List<CamcorderProfile> mCamcorderProfiles; [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/ |
RVCVRecordActivity.java | 28 import android.media.CamcorderProfile; 389 private CamcorderProfile mProfile; 393 CamcorderProfile.QUALITY_480P, // smaller -> faster 394 CamcorderProfile.QUALITY_720P, 395 CamcorderProfile.QUALITY_1080P, 396 CamcorderProfile.QUALITY_HIGH // existence guaranteed 429 CamcorderProfile profile = null; 436 if (CamcorderProfile.hasProfile(i)) { 437 profile = CamcorderProfile.get(i); 510 public CamcorderProfile getProfile() [all...] |