HomeSort by relevance Sort by last modified time
    Searched defs:mcl (Results 1 - 20 of 20) sorted by null

  /frameworks/av/media/libmedia/
IMediaPlayerService.cpp 204 sp<IMediaCodecList> mcl = getCodecList(); local
205 reply->writeStrongBinder(IInterface::asBinder(mcl));
  /cts/tests/tests/media/src/android/media/cts/
ResourceManagerTestActivityBase.java 87 MediaCodecList mcl = new MediaCodecList(MediaCodecList.ALL_CODECS); local
88 for (MediaCodecInfo info : mcl.getCodecInfos()) {
Vp8EncoderTest.java 315 MediaCodecList mcl = new MediaCodecList(MediaCodecList.REGULAR_CODECS); local
317 if (mcl.findEncoderForFormat(format) == null) {
ClearKeySystemTest.java 314 MediaCodecList mcl = new MediaCodecList(MediaCodecList.ALL_CODECS); local
315 if (mcl.findDecoderForFormat(format) == null) {
MediaCodecCapabilitiesTest.java 327 MediaCodecList mcl = new MediaCodecList(MediaCodecList.REGULAR_CODECS); local
328 for (MediaCodecInfo info : mcl.getCodecInfos()) {
MediaCodecTunneledPlayer.java 245 MediaCodecList mcl = new MediaCodecList(MediaCodecList.ALL_CODECS); local
246 String codecName = mcl.findDecoderForFormat(format);
EncodeVirtualDisplayTest.java 169 MediaCodecList mcl = new MediaCodecList(MediaCodecList.REGULAR_CODECS); local
174 return mcl.findEncoderForFormat(format) != null;
218 MediaCodecList mcl = new MediaCodecList(MediaCodecList.REGULAR_CODECS); local
219 String codec = mcl.findEncoderForFormat(encoderFormat);
DecodeEditEncodeTest.java 245 MediaCodecList mcl = new MediaCodecList(MediaCodecList.REGULAR_CODECS); local
246 return mcl.findEncoderForFormat(format);
    [all...]
EncodeDecodeTest.java 385 MediaCodecList mcl = new MediaCodecList(MediaCodecList.REGULAR_CODECS); local
386 String codec = mcl.findEncoderForFormat(format);
394 String codec_decoder = mcl.findDecoderForFormat(format);
457 MediaCodecList mcl = new MediaCodecList(MediaCodecList.REGULAR_CODECS); local
458 String codec = mcl.findEncoderForFormat(format);
481 String codec_decoder = mcl.findDecoderForFormat(format);
    [all...]
ExtractDecodeEditEncodeMuxTest.java 300 MediaCodecList mcl = new MediaCodecList(MediaCodecList.REGULAR_CODECS); local
317 String videoEncoderName = mcl.findEncoderForFormat(outputVideoFormat);
333 String audioEncoderName = mcl.findEncoderForFormat(outputAudioFormat);
369 videoDecoder = createVideoDecoder(mcl, inputFormat, outputSurface.getSurface());
382 audioDecoder = createAudioDecoder(mcl, inputFormat);
599 MediaCodecList mcl, MediaFormat inputFormat, Surface surface) throws IOException {
600 MediaCodec decoder = MediaCodec.createByCodecName(mcl.findDecoderForFormat(inputFormat));
635 MediaCodecList mcl, MediaFormat inputFormat) throws IOException {
636 MediaCodec decoder = MediaCodec.createByCodecName(mcl.findDecoderForFormat(inputFormat));
    [all...]
ImageReaderDecoderTest.java 318 MediaCodecList mcl = new MediaCodecList(MediaCodecList.REGULAR_CODECS); local
321 for (MediaCodecInfo info : mcl.getCodecInfos()) {
    [all...]
MediaCodecTest.java 1457 MediaCodecList mcl = new MediaCodecList(MediaCodecList.REGULAR_CODECS); local
    [all...]
Vp8CodecTestBase.java 132 MediaCodecList mcl = new MediaCodecList(MediaCodecList.REGULAR_CODECS); local
133 for (MediaCodecInfo codecInfo : mcl.getCodecInfos()) {
    [all...]
EncodeVirtualDisplayWithCompositionTest.java 546 MediaCodecList mcl = new MediaCodecList(MediaCodecList.REGULAR_CODECS); local
548 if ((codecName = mcl.findEncoderForFormat(format)) == null) {
1338 MediaCodecList mcl = new MediaCodecList(MediaCodecList.REGULAR_CODECS); local
1372 MediaCodecList mcl = new MediaCodecList(MediaCodecList.REGULAR_CODECS); local
    [all...]
VideoEncoderTest.java 151 MediaCodecList mcl = new MediaCodecList(MediaCodecList.REGULAR_CODECS); local
152 for (MediaCodecInfo info : mcl.getCodecInfos()) {
246 MediaCodecList mcl = new MediaCodecList(MediaCodecList.REGULAR_CODECS); local
247 String videoDecName = mcl.findDecoderForFormat(mDecFormat);
1154 MediaCodecList mcl = new MediaCodecList(MediaCodecList.REGULAR_CODECS); local
    [all...]
  /frameworks/base/media/jni/
android_media_MediaCodecList.cpp 35 sp<IMediaCodecList> mcl = MediaCodecList::getInstance(); local
36 if (mcl == NULL) {
41 return mcl;
46 sp<IMediaCodecList> mcl = getCodecList(env); local
47 if (mcl == NULL) {
51 return mcl->countCodecs();
56 sp<IMediaCodecList> mcl = getCodecList(env); local
57 if (mcl == NULL) {
62 const sp<MediaCodecInfo> &info = mcl->getCodecInfo(index);
85 sp<IMediaCodecList> mcl = getCodecList(env) local
99 sp<IMediaCodecList> mcl = getCodecList(env); local
116 sp<IMediaCodecList> mcl = getCodecList(env); local
153 sp<IMediaCodecList> mcl = getCodecList(env); local
266 sp<IMediaCodecList> mcl = getCodecList(env); local
    [all...]
  /cts/libs/deviceutil/src/android/cts/util/
MediaUtils.java 190 MediaCodecList mcl = new MediaCodecList(MediaCodecList.REGULAR_CODECS); local
192 for (MediaCodecInfo info : mcl.getCodecInfos()) {
  /cts/tests/tests/os/src/android/os/cts/
ParcelTest.java 247 MockClassLoader mcl = new MockClassLoader(); local
253 assertNull(p.readValue(mcl));
260 assertEquals("String", p.readValue(mcl));
267 assertEquals(Integer.MAX_VALUE, p.readValue(mcl));
279 map2 = (HashMap) p.readValue(mcl);
296 bundle2 = (Bundle) p.readValue(mcl);
309 assertEquals(s, p.readValue(mcl));
316 assertEquals(Short.MAX_VALUE, p.readValue(mcl));
323 assertEquals(Long.MAX_VALUE, p.readValue(mcl));
330 assertEquals(Float.MAX_VALUE, p.readValue(mcl));
    [all...]
  /frameworks/av/media/libstagefright/
MediaCodec.cpp 356 const sp<IMediaCodecList> mcl = MediaCodecList::getInstance(); local
357 if (mcl == NULL) {
361 ssize_t codecIdx = mcl->findCodecByName(tmp.c_str());
363 const sp<MediaCodecInfo> info = mcl->getCodecInfo(codecIdx);
    [all...]
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.osgi_3.10.100.v20150529-1857.jar 

Completed in 783 milliseconds