Searched refs:outFp (Results 1 – 5 of 5) sorted by relevance
/frameworks/av/media/tests/benchmark/tests/ |
D | EncoderTest.cpp | 87 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()
|
D | C2EncoderTest.cpp | 113 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/ |
D | Decoder.h | 74 string &codecName, bool asyncMode, FILE *outFp = nullptr);
|
D | Decoder.cpp | 153 string &codecName, bool asyncMode, FILE *outFp) { in decode() argument 158 mOutFp = outFp; in decode()
|
/frameworks/av/media/module/extractors/tests/ |
D | ExtractorUnitTest.cpp | 427 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()
|