Skip to content

Commit

Permalink
FaststartWriter::getIntermediateFilePath() を追加
Browse files Browse the repository at this point in the history
  • Loading branch information
haruyama committed Jan 12, 2021
1 parent 732ec13 commit a4b6d5e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions include/shiguredo/mp4/writer/faststart_writer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ class FaststartWriter : public Writer {
void writeMdatHeader();
void copyMdatData();
void deleteIntermediateFile();
std::filesystem::path getIntermediateFilePath();

private:
std::ostream& m_os;
Expand Down
5 changes: 5 additions & 0 deletions src/writer/faststart_writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,4 +199,9 @@ void FaststartWriter::deleteIntermediateFile() {
}
}

std::filesystem::path FaststartWriter::getIntermediateFilePath() {
return m_mdat_path;
}

} // namespace shiguredo::mp4::writer

0 comments on commit a4b6d5e

Please sign in to comment.