Home
last modified time | relevance | path

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

/aosp12/frameworks/av/media/tests/benchmark/MediaBenchmarkTest/src/main/java/com/android/media/benchmark/library/
H A DNative.java22 public native int Extract(String inputFilePath, String inputFileName, String statsFile); in Extract() argument
24 public native int Mux(String inputFilePath, String inputFileName, String outputFilePath, in Mux() argument
27 public native int Decode(String inputFilePath, String inputFileName, String statsFile, in Decode() argument
30 public native int Encode(String inputFilePath, String inputFileName, String statsFile, in Encode() argument
/aosp12/frameworks/av/media/tests/benchmark/MediaBenchmarkTest/src/main/cpp/
H A DNativeExtractor.cpp31 const char *inputFilePath = env->GetStringUTFChars(jInputFilePath, nullptr); in Java_com_android_media_benchmark_library_Native_Extract() local
33 string sFilePath = string(inputFilePath) + string(inputFileName); in Java_com_android_media_benchmark_library_Native_Extract()
76 env->ReleaseStringUTFChars(jInputFilePath, inputFilePath); in Java_com_android_media_benchmark_library_Native_Extract()
H A DNativeMuxer.cpp34 const char *inputFilePath = env->GetStringUTFChars(jInputFilePath, nullptr); in Java_com_android_media_benchmark_library_Native_Mux() local
36 string sInputFile = string(inputFilePath) + string(inputFileName); in Java_com_android_media_benchmark_library_Native_Mux()
143 env->ReleaseStringUTFChars(jInputFilePath, inputFilePath); in Java_com_android_media_benchmark_library_Native_Mux()
/aosp12/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/createtzs2protodatafile/
H A DCreateTzS2ProtoDataFileTest.java60 Path inputFilePath = copyTestResource(getClass(), inputResource, inputDirPath); in regressionTest() local
67 "--input-file", inputFilePath.toAbsolutePath().toString(), in regressionTest()
/aosp12/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/geojsontz_to_tzs2polygons/
H A DGeoJsonTzToTzS2PolygonsTest.java66 Path inputFilePath = copyTestResource(getClass(), inputResource, inputDirPath); in regressionTest() local
72 "--geo-json", inputFilePath.toAbsolutePath().toString(), in regressionTest()
/aosp12/packages/apps/Messaging/src/com/android/messaging/util/
H A DImageUtils.java479 final String inputFilePath; in resizeGifImage() local
481 inputFilePath = MediaScratchFileProvider.getFileFromUri(mUri).getAbsolutePath(); in resizeGifImage()
486 inputFilePath = mUri.getPath(); in resizeGifImage()
497 GifTranscoder.transcode(mContext, inputFilePath, outputFilePath); in resizeGifImage()
513 bytesToReturn = Files.toByteArray(new File(inputFilePath)); in resizeGifImage()
516 "Could not create FileInputStream with path of " + inputFilePath, e); in resizeGifImage()
/aosp12/frameworks/av/media/libstagefright/tests/writer/
H A DWriterTest.cpp303 void getFileDetails(string &inputFilePath, string &info, configFormat &params, bool &isAudio, in getFileDetails() argument
315 inputFilePath += kInputData[streamIndex].inputFile; in getFileDetails()