Home
last modified time | relevance | path

Searched refs:CamcorderProfile (Results 1 – 17 of 17) sorted by relevance

/frameworks/av/media/libmedia/include/media/
DMediaProfiles.h250 struct CamcorderProfile { struct
251 CamcorderProfile() in CamcorderProfile() function
259 CamcorderProfile(const CamcorderProfile& copy) { in CamcorderProfile() argument
268 ~CamcorderProfile() { in ~CamcorderProfile() argument
373 static CamcorderProfile* createCamcorderProfile(
389 static CamcorderProfile *createDefaultCamcorderQcifProfile(camcorder_quality quality);
390 static CamcorderProfile *createDefaultCamcorderCifProfile(camcorder_quality quality);
392 MediaProfiles::CamcorderProfile **lowProfile,
393 MediaProfiles::CamcorderProfile **lowSpecificProfile);
395 MediaProfiles::CamcorderProfile **highProfile,
[all …]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
DCamera2SwitchPreviewTest.java40 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 …]
DCamera2RecordingTest.java39 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 …]
DMediaRecorderStressTest.java31 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/
DMediaProfiles.cpp379 /*static*/ MediaProfiles::CamcorderProfile*
395 MediaProfiles::CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; in createCamcorderProfile()
609 std::unique_ptr<CamcorderProfile> profile = in checkAndAddRequiredProfilesIfNecessary()
610 std::make_unique<CamcorderProfile>( in checkAndAddRequiredProfilesIfNecessary()
705 /*static*/ MediaProfiles::CamcorderProfile*
712 CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; in createDefaultCamcorderTimeLapseQcifProfile()
722 /*static*/ MediaProfiles::CamcorderProfile*
729 CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; in createDefaultCamcorderTimeLapse480pProfile()
741 MediaProfiles::CamcorderProfile **lowTimeLapseProfile, in createDefaultCamcorderTimeLapseLowProfiles()
742 MediaProfiles::CamcorderProfile **lowSpecificTimeLapseProfile) { in createDefaultCamcorderTimeLapseLowProfiles()
[all …]
/frameworks/base/media/java/android/media/
DCamcorderProfile.java45 public class CamcorderProfile class
383 public static CamcorderProfile get(int quality) { in get()
446 public static CamcorderProfile get(int cameraId, int quality) { in get()
528 private CamcorderProfile(int duration, in CamcorderProfile() method in CamcorderProfile
559 private static native final CamcorderProfile native_get_camcorder_profile( in native_get_camcorder_profile()
DMediaRecorder.java651 public void setProfile(CamcorderProfile profile) { in setProfile()
657 if (profile.quality >= CamcorderProfile.QUALITY_TIME_LAPSE_LOW && in setProfile()
658 profile.quality <= CamcorderProfile.QUALITY_TIME_LAPSE_QVGA) { in setProfile()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
DMediaRecorderStressTestRunner.java19 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/
DMandatoryStreamCombination.java33 import android.media.CamcorderProfile;
1229 CamcorderProfile.hasProfile(mCameraId, CamcorderProfile.QUALITY_2160P) ? in getMaxRecordingSize()
1230 CamcorderProfile.QUALITY_2160P : in getMaxRecordingSize()
1231 CamcorderProfile.hasProfile(mCameraId, CamcorderProfile.QUALITY_1080P) ? in getMaxRecordingSize()
1232 CamcorderProfile.QUALITY_1080P : in getMaxRecordingSize()
1233 CamcorderProfile.hasProfile(mCameraId, CamcorderProfile.QUALITY_720P) ? in getMaxRecordingSize()
1234 CamcorderProfile.QUALITY_720P : in getMaxRecordingSize()
1235 CamcorderProfile.hasProfile(mCameraId, CamcorderProfile.QUALITY_480P) ? in getMaxRecordingSize()
1236 CamcorderProfile.QUALITY_480P : in getMaxRecordingSize()
1237 CamcorderProfile.hasProfile(mCameraId, CamcorderProfile.QUALITY_QVGA) ? in getMaxRecordingSize()
[all …]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
DMediaPlayerPerformance.java27 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/
DMediaEncoderFilter.java32 import android.media.CamcorderProfile;
100 private CamcorderProfile mProfile = null;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DCameraStreamer.java24 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/
Dpreloaded-classes3662 android.media.CamcorderProfile
Dboot-image-profile.txt43845 Landroid/media/CamcorderProfile;
/frameworks/base/tools/aapt2/integration-tests/CommandTests/
Dandroid-28.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/net/ javax/ ...
/frameworks/opt/setupwizard/tools/docs/
Dandroid-22.txt14288 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/
Dcurrent.txt24710 public class CamcorderProfile {
24711 method public static android.media.CamcorderProfile get(int);
24712 method public static android.media.CamcorderProfile get(int, int);
26751 method public void setProfile(android.media.CamcorderProfile);