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

1 2

  /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 28 import android.media.CamcorderProfile;
291 return CamcorderProfile.hasProfile(CamcorderProfile.QUALITY_QCIF);
293 return CamcorderProfile.hasProfile(CamcorderProfile.QUALITY_QVGA);
295 return CamcorderProfile.hasProfile(CamcorderProfile.QUALITY_CIF);
297 return CamcorderProfile.hasProfile(CamcorderProfile.QUALITY_480P);
299 return CamcorderProfile.hasProfile(CamcorderProfile.QUALITY_720P)
    [all...]
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
NativeMediaTest.java 21 import android.media.CamcorderProfile;
43 runPlayTest(CamcorderProfile.QUALITY_1080P);
47 runPlayTest(CamcorderProfile.QUALITY_720P);
51 runPlayTest(CamcorderProfile.QUALITY_480P);
104 if (!CamcorderProfile.hasProfile(quality)) {
107 CamcorderProfile profile = CamcorderProfile.get(quality);
NativeMediaActivity.java 23 import android.media.CamcorderProfile;
53 /** 0 for default (480x360), other value can be CamcorderProfile.QUALITY_480P / 720P / 1080P */
160 case CamcorderProfile.QUALITY_1080P:
163 case CamcorderProfile.QUALITY_720P:
166 case CamcorderProfile.QUALITY_480P:
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);
  /frameworks/av/include/media/
MediaProfiles.h 230 struct CamcorderProfile {
231 CamcorderProfile()
239 CamcorderProfile(const CamcorderProfile& copy) {
248 ~CamcorderProfile() {
349 static CamcorderProfile* createCamcorderProfile(
365 static CamcorderProfile *createDefaultCamcorderQcifProfile(camcorder_quality quality);
366 static CamcorderProfile *createDefaultCamcorderCifProfile(camcorder_quality quality);
368 MediaProfiles::CamcorderProfile **lowProfile,
369 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 425 * Uses the settings from a CamcorderProfile object for recording. This method should
427 * If a time lapse CamcorderProfile is used, audio related source or recording
430 * @param profile the CamcorderProfile to use
431 * @see android.media.CamcorderProfile
433 public void setProfile(CamcorderProfile profile) {
439 if (profile.quality >= CamcorderProfile.QUALITY_TIME_LAPSE_LOW &&
440 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
  /packages/apps/Camera/src/com/android/camera/
CameraSettings.java 29 import android.media.CamcorderProfile;
97 if (CamcorderProfile.hasProfile(
102 return Integer.toString(CamcorderProfile.QUALITY_HIGH);
354 // that of CamcorderProfile.java.
534 supported.add(Integer.toString(CamcorderProfile.QUALITY_HIGH));
535 CamcorderProfile high = CamcorderProfile.get(
536 mCameraId, CamcorderProfile.QUALITY_HIGH);
537 CamcorderProfile low = CamcorderProfile.get
    [all...]
  /frameworks/av/media/libmedia/
MediaProfiles.cpp 316 /*static*/ MediaProfiles::CamcorderProfile*
332 MediaProfiles::CamcorderProfile *profile = new MediaProfiles::CamcorderProfile;
546 CamcorderProfile *profile =
547 new CamcorderProfile(
637 /*static*/ MediaProfiles::CamcorderProfile*
644 CamcorderProfile *profile = new MediaProfiles::CamcorderProfile;
654 /*static*/ MediaProfiles::CamcorderProfile*
661 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;
144 CamcorderProfile profile = CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH);
173 // 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;
144 CamcorderProfile profile = CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH);
173 // 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;
144 CamcorderProfile profile = CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH);
173 // Step 3: Set a CamcorderProfile (requires API Level 8 or higher)
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
RecordingTest.java 27 import android.media.CamcorderProfile;
73 CamcorderProfile.QUALITY_HIGH,
74 CamcorderProfile.QUALITY_2160P,
75 CamcorderProfile.QUALITY_1080P,
76 CamcorderProfile.QUALITY_720P,
77 CamcorderProfile.QUALITY_480P,
78 CamcorderProfile.QUALITY_CIF,
79 CamcorderProfile.QUALITY_QCIF,
80 CamcorderProfile.QUALITY_QVGA,
81 CamcorderProfile.QUALITY_LOW
    [all...]
RobustnessTest.java 37 import android.media.CamcorderProfile;
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
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...]
  /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...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
RVCVRecordActivity.java 28 import android.media.CamcorderProfile;
380 private CamcorderProfile mProfile;
384 CamcorderProfile.QUALITY_480P, // smaller -> faster
385 CamcorderProfile.QUALITY_720P,
386 CamcorderProfile.QUALITY_1080P,
387 CamcorderProfile.QUALITY_HIGH // existence guaranteed
410 CamcorderProfile profile = null;
416 if (CamcorderProfile.hasProfile(i)) {
417 profile = CamcorderProfile.get(i);
476 public CamcorderProfile getProfile()
    [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...]
VideoCamera.java 46 import android.media.CamcorderProfile;
116 CamcorderProfile.QUALITY_TIME_LAPSE_1080P,
117 CamcorderProfile.QUALITY_TIME_LAPSE_720P,
118 CamcorderProfile.QUALITY_TIME_LAPSE_480P,
119 CamcorderProfile.QUALITY_TIME_LAPSE_CIF,
120 CamcorderProfile.QUALITY_TIME_LAPSE_QVGA,
121 CamcorderProfile.QUALITY_TIME_LAPSE_QCIF};
124 CamcorderProfile.QUALITY_1080P,
125 CamcorderProfile.QUALITY_720P,
126 CamcorderProfile.QUALITY_480P
    [all...]
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
TestingCamera.java 29 import android.media.CamcorderProfile;
142 private List<CamcorderProfile> mCamcorderProfiles;
    [all...]

Completed in 1715 milliseconds

1 2