Home
last modified time | relevance | path

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

/cts/tests/media/common/src/android/mediav2/common/cts/
DOutputManager.java122 static boolean arePtsListsIdentical(ArrayList<Long> refList, ArrayList<Long> testList, in arePtsListsIdentical() argument
125 if (refList.size() != testList.size()) { in arePtsListsIdentical()
128 refList.size())); in arePtsListsIdentical()
133 for (int i = 0; i < Math.min(refList.size(), testList.size()); i++) { in arePtsListsIdentical()
134 if (!Objects.equals(refList.get(i), testList.get(i))) { in arePtsListsIdentical()
136 "Frame idx %d, ref pts %dus, test pts %dus \n", i, refList.get(i), in arePtsListsIdentical()
141 if (refList.size() < testList.size()) { in arePtsListsIdentical()
142 for (int i = refList.size(); i < testList.size(); i++) { in arePtsListsIdentical()
146 } else if (refList.size() > testList.size()) { in arePtsListsIdentical()
147 for (int i = testList.size(); i < refList.size(); i++) { in arePtsListsIdentical()
[all …]