Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/av_codec/services/engine/codec/video/fcodec/
H A Dfcodec.cpp85 if (dumpOutFile_ != nullptr) { in ~FCodec()
86 dumpOutFile_->close(); in ~FCodec()
114 dumpOutFile_ = std::make_shared<std::ofstream>(); in OpenDumpFile()
115 dumpOutFile_->open(fileName, std::ios::out | std::ios::binary); in OpenDumpFile()
116 if (!dumpOutFile_->is_open()) { in OpenDumpFile()
118 dumpOutFile_ = nullptr; in OpenDumpFile()
1059 if (!dumpOutFile_ || !dumpOutFile_->is_open()) { in DumpOutputBuffer()
1063dumpOutFile_->write(reinterpret_cast<char *>(cachedFrame_->data[0] + i * cachedFrame_->linesize[0]… in DumpOutputBuffer()
1067dumpOutFile_->write(reinterpret_cast<char *>(cachedFrame_->data[1] + i * cachedFrame_->linesize[1]… in DumpOutputBuffer()
1071dumpOutFile_->write(reinterpret_cast<char *>(cachedFrame_->data[2] + i * cachedFrame_->linesize[2]… in DumpOutputBuffer()
H A Dfcodec.h188 std::shared_ptr<std::ofstream> dumpOutFile_ = nullptr; variable
/ohos5.0/foundation/multimedia/av_codec/services/engine/codec/video/hevcdecoder/
H A Dhevc_decoder.cpp157 if (dumpOutFile_ != nullptr) { in ~HevcDecoder()
158 dumpOutFile_->close(); in ~HevcDecoder()
212 dumpOutFile_ = std::make_shared<std::ofstream>(); in OpenDumpFile()
213 dumpOutFile_->open(fileName, std::ios::out | std::ios::binary); in OpenDumpFile()
214 if (!dumpOutFile_->is_open()) { in OpenDumpFile()
216 dumpOutFile_ = nullptr; in OpenDumpFile()
1138 if (!dumpOutFile_ || !dumpOutFile_->is_open()) { in DumpOutputBuffer()
1146dumpOutFile_->write(reinterpret_cast<char *>(cachedFrame_->data[0] + i * cachedFrame_->linesize[0]… in DumpOutputBuffer()
1150dumpOutFile_->write(reinterpret_cast<char *>(cachedFrame_->data[1] + i * cachedFrame_->linesize[1]… in DumpOutputBuffer()
1154dumpOutFile_->write(reinterpret_cast<char *>(cachedFrame_->data[2] + i * cachedFrame_->linesize[2]… in DumpOutputBuffer()
H A Dhevc_decoder.h209 std::shared_ptr<std::ofstream> dumpOutFile_ = nullptr; variable
/ohos5.0/foundation/multimedia/audio_framework/services/audio_service/client/include/
H A Drenderer_in_client_private.h309 std::string dumpOutFile_ = ""; variable
/ohos5.0/foundation/multimedia/audio_framework/services/audio_service/client/src/
H A Drenderer_in_client.cpp279dumpOutFile_ = std::to_string(sessionId_) + "_" + std::to_string(curStreamParams_.samplingRate) + … in SetAudioStreamInfo()
282 DumpFileUtil::OpenDumpFile(DUMP_CLIENT_PARA, dumpOutFile_, &dumpOutFd_); in SetAudioStreamInfo()