Home
last modified time | relevance | path

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

/frameworks/av/media/tests/benchmark/tests/
DEncoderTest.cpp87 FILE *outFp = fopen(outputFileName.c_str(), "wb"); in TEST_P() local
88 ASSERT_NE(outFp, nullptr) << "Unable to open output file" << outputFileName in TEST_P()
92 … status = decoder->decode(inputBuffer.get(), frameInfo, decName, false /*asyncMode */, outFp); in TEST_P()
146 if (outFp) fclose(outFp); in TEST_P()
DC2EncoderTest.cpp113 FILE *outFp = fopen(outputFileName.c_str(), "wb"); in TEST_P() local
114 ASSERT_NE(outFp, nullptr) << "Unable to open output file" << outputFileName in TEST_P()
119 false /*asyncMode */, outFp); in TEST_P()
/frameworks/av/media/tests/benchmark/src/native/decoder/
DDecoder.h74 string &codecName, bool asyncMode, FILE *outFp = nullptr);
DDecoder.cpp153 string &codecName, bool asyncMode, FILE *outFp) { in decode() argument
158 mOutFp = outFp; in decode()
/frameworks/av/media/module/extractors/tests/
DExtractorUnitTest.cpp427 FILE *outFp = fopen((OUTPUT_DUMP_FILE + to_string(idx)).c_str(), "wb"); in TEST_P() local
428 if (!outFp) { in TEST_P()
439 if (outFp) fwrite(buffer->data(), 1, buffer->range_length(), outFp); in TEST_P()
443 if (outFp) fclose(outFp); in TEST_P()