HomeSort by relevance Sort by last modified time
    Searched refs:CamcorderProfile (Results 1 - 17 of 17) sorted by null

  /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...]
MediaRecorderTest.java 27 import android.media.CamcorderProfile;
238 CamcorderProfile profile = CamcorderProfile.get(
239 0 /* cameraId */, CamcorderProfile.QUALITY_LOW);
312 CamcorderProfile profile = CamcorderProfile.get(
313 0 /* cameraId */, CamcorderProfile.QUALITY_LOW);
    [all...]
MediaPlayerTest.java 25 import android.media.CamcorderProfile;
    [all...]
  /frameworks/av/media/libmedia/include/media/
MediaProfiles.h 267 struct CamcorderProfile {
268 CamcorderProfile()
276 CamcorderProfile(const CamcorderProfile& copy) {
285 ~CamcorderProfile() {
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)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/video/
CameraVideoActivity.java 29 import android.media.CamcorderProfile;
202 // Step 3: set a CamcorderProfile
206 case CamcorderProfile.QUALITY_QCIF:
209 case CamcorderProfile.QUALITY_QVGA:
212 case CamcorderProfile.QUALITY_CIF:
215 case CamcorderProfile.QUALITY_480P:
218 case CamcorderProfile.QUALITY_720P:
222 String msg = "Unknown CamcorderProfile: " + mCurrentVideoSizeId;
234 mMediaRecorder.setProfile(CamcorderProfile.get(mCurrentCameraId, mCurrentVideoSizeId));
584 CamcorderProfile.QUALITY_LOW
    [all...]
  /frameworks/av/media/libmedia/
MediaProfiles.cpp 333 /*static*/ MediaProfiles::CamcorderProfile*
349 MediaProfiles::CamcorderProfile *profile = new MediaProfiles::CamcorderProfile;
563 std::unique_ptr<CamcorderProfile> profile =
564 std::make_unique<CamcorderProfile>(
659 /*static*/ MediaProfiles::CamcorderProfile*
666 CamcorderProfile *profile = new MediaProfiles::CamcorderProfile;
676 /*static*/ MediaProfiles::CamcorderProfile*
683 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 32 import android.media.CamcorderProfile;
88 CamcorderProfile.QUALITY_HIGH,
89 CamcorderProfile.QUALITY_2160P,
90 CamcorderProfile.QUALITY_1080P,
91 CamcorderProfile.QUALITY_720P,
92 CamcorderProfile.QUALITY_480P,
93 CamcorderProfile.QUALITY_CIF,
94 CamcorderProfile.QUALITY_QCIF,
95 CamcorderProfile.QUALITY_QVGA,
96 CamcorderProfile.QUALITY_LOW
    [all...]
ExtendedCameraCharacteristicsTest.java 38 import android.media.CamcorderProfile;
289 // For hidden physical camera, since we don't require CamcorderProfile to be
304 CamcorderProfile maxVideoProfile = CamcorderProfile.get(
305 cameraId, CamcorderProfile.QUALITY_HIGH);
537 CamcorderProfile.QUALITY_2160P,
538 CamcorderProfile.QUALITY_1080P,
539 CamcorderProfile.QUALITY_480P,
540 CamcorderProfile.QUALITY_720P,
541 CamcorderProfile.QUALITY_CIF
    [all...]
LogicalCameraDeviceTest.java 44 import android.media.CamcorderProfile;
    [all...]
  /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...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
RVCVRecordActivity.java 28 import android.media.CamcorderProfile;
433 private CamcorderProfile mProfile;
438 CamcorderProfile.QUALITY_480P, // smaller -> faster
439 CamcorderProfile.QUALITY_720P,
440 CamcorderProfile.QUALITY_1080P,
441 CamcorderProfile.QUALITY_HIGH // existence guaranteed
474 CamcorderProfile profile = null;
481 if (CamcorderProfile.hasProfile(i)) {
482 profile = CamcorderProfile.get(i);
555 public CamcorderProfile getProfile()
    [all...]
  /cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/
MediaDeviceInfo.java 24 import android.media.CamcorderProfile;
  /cts/tests/camera/src/android/hardware/cts/
CameraTest.java 34 import android.media.CamcorderProfile;
    [all...]

Completed in 1684 milliseconds