Home
last modified time | relevance | path

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

/cts/tests/videocodec/src/android/videocodec/cts/
DVideoEncoderValidationTestBase.java142 protected void setUpSource(String inpPath) throws IOException { in setUpSource() argument
143 Preconditions.assertTestFileExists(inpPath); in setUpSource()
144 mFileInp = new RandomAccessFile(inpPath, "r"); in setUpSource()
/cts/tests/media/common/src/android/mediav2/common/cts/
DCodecEncoderTestBase.java348 protected void setUpSource(String inpPath) throws IOException { in setUpSource() argument
349 Preconditions.assertTestFileExists(inpPath); in setUpSource()
350 try (FileInputStream fInp = new FileInputStream(inpPath)) { in setUpSource()
351 int size = (int) new File(inpPath).length(); in setUpSource()
/cts/tests/mediapc/src/android/mediapc/cts/
DCodecTestBase.java773 String inpPath = mInpPrefix + srcFile; in setUpSource() local
774 try (FileInputStream fInp = new FileInputStream(inpPath)) { in setUpSource()
775 int size = (int) new File(inpPath).length(); in setUpSource()
/cts/tests/media/src/android/mediav2/cts/
DExtractorTest.java88 static TestMediaDataSource fromString(String inpPath, boolean failSize, boolean failRead) in fromString() argument
90 try (FileInputStream fInp = new FileInputStream(inpPath)) { in fromString()
91 int size = (int) new File(inpPath).length(); in fromString()