/frameworks/av/media/libmedia/include/media/ |
D | MediaProfiles.h | 267 struct CamcorderProfile { struct 268 CamcorderProfile() in CamcorderProfile() argument 276 CamcorderProfile(const CamcorderProfile& copy) { in CamcorderProfile() function 285 ~CamcorderProfile() { in ~CamcorderProfile() argument 390 static CamcorderProfile* createCamcorderProfile( 406 static CamcorderProfile *createDefaultCamcorderQcifProfile(camcorder_quality quality); 407 static CamcorderProfile *createDefaultCamcorderCifProfile(camcorder_quality quality); 409 MediaProfiles::CamcorderProfile **lowProfile, 410 MediaProfiles::CamcorderProfile **lowSpecificProfile); 412 MediaProfiles::CamcorderProfile **highProfile, [all …]
|
/frameworks/av/include/media/ |
D | MediaProfiles.h | 267 struct CamcorderProfile { struct 268 CamcorderProfile() in CamcorderProfile() function 276 CamcorderProfile(const CamcorderProfile& copy) { in CamcorderProfile() argument 285 ~CamcorderProfile() { in ~CamcorderProfile() argument 390 static CamcorderProfile* createCamcorderProfile( 406 static CamcorderProfile *createDefaultCamcorderQcifProfile(camcorder_quality quality); 407 static CamcorderProfile *createDefaultCamcorderCifProfile(camcorder_quality quality); 409 MediaProfiles::CamcorderProfile **lowProfile, 410 MediaProfiles::CamcorderProfile **lowSpecificProfile); 412 MediaProfiles::CamcorderProfile **highProfile, [all …]
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/ |
D | Camera2SwitchPreviewTest.java | 40 import android.media.CamcorderProfile; 117 CamcorderProfile.QUALITY_HIGH, 118 CamcorderProfile.QUALITY_2160P, 119 CamcorderProfile.QUALITY_1080P, 120 CamcorderProfile.QUALITY_720P, 121 CamcorderProfile.QUALITY_480P, 122 CamcorderProfile.QUALITY_CIF, 123 CamcorderProfile.QUALITY_QCIF, 124 CamcorderProfile.QUALITY_QVGA, 125 CamcorderProfile.QUALITY_LOW, [all …]
|
D | Camera2RecordingTest.java | 39 import android.media.CamcorderProfile; 93 CamcorderProfile.QUALITY_HIGH, 94 CamcorderProfile.QUALITY_2160P, 95 CamcorderProfile.QUALITY_1080P, 96 CamcorderProfile.QUALITY_720P, 97 CamcorderProfile.QUALITY_480P, 98 CamcorderProfile.QUALITY_CIF, 99 CamcorderProfile.QUALITY_QCIF, 100 CamcorderProfile.QUALITY_QVGA, 101 CamcorderProfile.QUALITY_LOW, [all …]
|
D | MediaRecorderStressTest.java | 31 import android.media.CamcorderProfile; 183 CamcorderProfile.hasProfile(CAMERA_ID, profile)); in recordVideoAndPlayback() 184 CamcorderProfile camcorderProfile = CamcorderProfile.get(CAMERA_ID, profile); in recordVideoAndPlayback() 276 recordVideoAndPlayback(CamcorderProfile.QUALITY_1080P); in testStressRecordVideoAndPlayback1080P() 282 recordVideoAndPlayback(CamcorderProfile.QUALITY_720P); in testStressRecordVideoAndPlayback720P() 288 recordVideoAndPlayback(CamcorderProfile.QUALITY_480P); in testStressRecordVideoAndPlayback480P() 330 CamcorderProfile profile = in testStressTimeLapse() 331 CamcorderProfile.get(j, CamcorderProfile.QUALITY_TIME_LAPSE_HIGH); in testStressTimeLapse()
|
/frameworks/av/media/libmedia/ |
D | MediaProfiles.cpp | 333 /*static*/ MediaProfiles::CamcorderProfile* 349 MediaProfiles::CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; in createCamcorderProfile() 563 std::unique_ptr<CamcorderProfile> profile = in checkAndAddRequiredProfilesIfNecessary() 564 std::make_unique<CamcorderProfile>( in checkAndAddRequiredProfilesIfNecessary() 659 /*static*/ MediaProfiles::CamcorderProfile* 666 CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; in createDefaultCamcorderTimeLapseQcifProfile() 676 /*static*/ MediaProfiles::CamcorderProfile* 683 CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; in createDefaultCamcorderTimeLapse480pProfile() 695 MediaProfiles::CamcorderProfile **lowTimeLapseProfile, in createDefaultCamcorderTimeLapseLowProfiles() 696 MediaProfiles::CamcorderProfile **lowSpecificTimeLapseProfile) { in createDefaultCamcorderTimeLapseLowProfiles() [all …]
|
/frameworks/base/media/java/android/media/ |
D | CamcorderProfile.java | 45 public class CamcorderProfile class 394 public static CamcorderProfile get(int quality) { in get() 457 public static CamcorderProfile get(int cameraId, int quality) { in get() 539 private CamcorderProfile(int duration, in CamcorderProfile() method in CamcorderProfile 570 private static native final CamcorderProfile native_get_camcorder_profile( in native_get_camcorder_profile()
|
D | MediaRecorder.java | 606 public void setProfile(CamcorderProfile profile) { in setProfile() 612 if (profile.quality >= CamcorderProfile.QUALITY_TIME_LAPSE_LOW && in setProfile() 613 profile.quality <= CamcorderProfile.QUALITY_TIME_LAPSE_QVGA) { in setProfile()
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/ |
D | MediaRecorderStressTestRunner.java | 19 import android.media.CamcorderProfile; 35 public static int mProfileQuality = CamcorderProfile.QUALITY_HIGH; 36 public static CamcorderProfile profile = CamcorderProfile.get(mCameraId, mProfileQuality);
|
/frameworks/base/core/java/android/hardware/camera2/params/ |
D | MandatoryStreamCombination.java | 36 import android.media.CamcorderProfile; 1107 CamcorderProfile.hasProfile(mCameraId, CamcorderProfile.QUALITY_2160P) ? in getMaxRecordingSize() 1108 CamcorderProfile.QUALITY_2160P : in getMaxRecordingSize() 1109 CamcorderProfile.hasProfile(mCameraId, CamcorderProfile.QUALITY_1080P) ? in getMaxRecordingSize() 1110 CamcorderProfile.QUALITY_1080P : in getMaxRecordingSize() 1111 CamcorderProfile.hasProfile(mCameraId, CamcorderProfile.QUALITY_720P) ? in getMaxRecordingSize() 1112 CamcorderProfile.QUALITY_720P : in getMaxRecordingSize() 1113 CamcorderProfile.hasProfile(mCameraId, CamcorderProfile.QUALITY_480P) ? in getMaxRecordingSize() 1114 CamcorderProfile.QUALITY_480P : in getMaxRecordingSize() 1115 CamcorderProfile.hasProfile(mCameraId, CamcorderProfile.QUALITY_QVGA) ? in getMaxRecordingSize() [all …]
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/ |
D | MediaPlayerPerformance.java | 27 import android.media.CamcorderProfile; 90 private CamcorderProfile mCamcorderProfile; 108 mCamcorderProfile = CamcorderProfile.get(CAMERA_ID); in setUp()
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosink/ |
D | MediaEncoderFilter.java | 32 import android.media.CamcorderProfile; 100 private CamcorderProfile mProfile = null;
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
D | CameraStreamer.java | 24 import android.media.CamcorderProfile; 1448 public void createRecorder(String outputPath, CamcorderProfile profile) { in createRecorder() 1852 public void createRecorder(String path, CamcorderProfile profile) { in createRecorder()
|
/frameworks/base/config/ |
D | preloaded-classes | 2234 android.media.CamcorderProfile
|
D | hiddenapi-greylist-max-o.txt | 37725 Landroid/media/CamcorderProfile;-><init>(IIIIIIIIIIII)V 37726 Landroid/media/CamcorderProfile;->native_has_camcorder_profile(II)Z 37727 Landroid/media/CamcorderProfile;->QUALITY_HIGH_SPEED_LIST_END:I 37728 Landroid/media/CamcorderProfile;->QUALITY_HIGH_SPEED_LIST_START:I 37729 Landroid/media/CamcorderProfile;->QUALITY_LIST_END:I 37730 Landroid/media/CamcorderProfile;->QUALITY_LIST_START:I 37731 Landroid/media/CamcorderProfile;->QUALITY_TIME_LAPSE_LIST_END:I 37732 Landroid/media/CamcorderProfile;->QUALITY_TIME_LAPSE_LIST_START:I
|
D | boot-image-profile.txt | 34530 Landroid/media/CamcorderProfile;
|
/frameworks/opt/setupwizard/tools/docs/ |
D | android-22.txt | 14288 public class CamcorderProfile { 14289 method public static android.media.CamcorderProfile get(int); 14290 method public static android.media.CamcorderProfile get(int, int); 15286 method public void setProfile(android.media.CamcorderProfile);
|
/frameworks/base/api/ |
D | current.txt | 23755 public class CamcorderProfile { 23756 method public static android.media.CamcorderProfile get(int); 23757 method public static android.media.CamcorderProfile get(int, int); 25594 method public void setProfile(android.media.CamcorderProfile);
|