Home
last modified time | relevance | path

Searched refs:getMediaType (Results 1 – 3 of 3) sorted by relevance

/cts/tests/tests/media/src/android/media/cts/
DCamcorderProfileTest.java164 assertTrue(videoProfile.getMediaType() != null); in checkAllProfiles()
168 assertEquals(MediaFormat.MIMETYPE_VIDEO_H263, videoProfile.getMediaType()); in checkAllProfiles()
171 assertEquals(MediaFormat.MIMETYPE_VIDEO_AVC, videoProfile.getMediaType()); in checkAllProfiles()
174 assertEquals(MediaFormat.MIMETYPE_VIDEO_MPEG4, videoProfile.getMediaType()); in checkAllProfiles()
177 assertEquals(MediaFormat.MIMETYPE_VIDEO_VP8, videoProfile.getMediaType()); in checkAllProfiles()
180 assertEquals(MediaFormat.MIMETYPE_VIDEO_HEVC, videoProfile.getMediaType()); in checkAllProfiles()
197 assertTrue(audioProfile.getMediaType() != null); in checkAllProfiles()
201 assertEquals(MediaFormat.MIMETYPE_AUDIO_AMR_NB, audioProfile.getMediaType()); in checkAllProfiles()
204 assertEquals(MediaFormat.MIMETYPE_AUDIO_AMR_WB, audioProfile.getMediaType()); in checkAllProfiles()
207 assertEquals(MediaFormat.MIMETYPE_AUDIO_AAC, audioProfile.getMediaType()); in checkAllProfiles()
[all …]
/cts/tests/app/src/android/app/cts/
DDownloadManagerTestBase.java162 final int mediaType = getMediaType(mediaStoreUri); in getMediaStoreColumnValue()
196 private int getMediaType(Uri mediaStoreUri) throws Exception { in getMediaType() method in DownloadManagerTestBase
/cts/tests/camera/src/android/hardware/camera2/cts/
DRecordingTest.java1235 ", video codec " + videoProfile.getMediaType() + ", and audio codec " + in doBasicRecordingByProfile()
1236 (audioProfile == null ? "(null)" : audioProfile.getMediaType())); in doBasicRecordingByProfile()