Home
last modified time | relevance | path

Searched refs:thatMediaType (Results 1 – 2 of 2) sorted by relevance

/cts/tests/media/jni/
DNativeMuxerTest.cpp339 const char* thatMediaType = nullptr; in appendMedia() local
341 AMEDIAFORMAT_KEY_MIME, &thatMediaType); in appendMedia()
345 if (strcmp(thatMediaType, thisMediaType) == 0) { in appendMedia()
371 const char* thatMediaType = nullptr; in appendMediaFromTime() local
373 AMEDIAFORMAT_KEY_MIME, &thatMediaType); in appendMediaFromTime()
377 if (strcmp(thatMediaType, thisMediaType) == 0) { in appendMediaFromTime()
449 const char* thatMediaType = nullptr; in isSubsetOf() local
450 AMediaFormat_getString(thatFormat, AMEDIAFORMAT_KEY_MIME, &thatMediaType); in isSubsetOf()
451 if (thisMediaType != nullptr && thatMediaType != nullptr && in isSubsetOf()
452 !strcmp(thisMediaType, thatMediaType)) { in isSubsetOf()
/cts/tests/media/src/android/mediav2/cts/
DMuxerTest.java306 String thatMediaType = thatFormat.getString(MediaFormat.KEY_MIME); in isSubsetOf() local
307 if (thisMediaType != null && thisMediaType.equals(thatMediaType)) { in isSubsetOf()