diff options
author | Anton Khirnov <anton@khirnov.net> | 2021-12-11 14:44:38 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-07-23 11:53:19 +0200 |
commit | 9fe62a545f02c63ebae3a2fe26e4018e4be1e655 (patch) | |
tree | bcc55b05d9d97cdda2636eb6fe9734281bf82355 /fftools/ffmpeg.h | |
parent | 6a23be92d2a0b1f5100afa0fd3ff33e8510b6eb3 (diff) | |
download | ffmpeg-9fe62a545f02c63ebae3a2fe26e4018e4be1e655.tar.gz |
fftools/ffmpeg: add a helper function to access output file size
Stop accessing muxer internals from outside of ffmpeg_mux.
Diffstat (limited to 'fftools/ffmpeg.h')
-rw-r--r-- | fftools/ffmpeg.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h index 2798fc830c..cab21e8170 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -705,5 +705,6 @@ void of_close(OutputFile **pof); void of_write_packet(OutputFile *of, AVPacket *pkt, OutputStream *ost, int unqueue); +int64_t of_filesize(OutputFile *of); #endif /* FFTOOLS_FFMPEG_H */ |