diff options
author | Anton Khirnov <anton@khirnov.net> | 2021-11-10 17:33:48 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-04-13 12:07:54 +0200 |
commit | 5c66ee6351ae3523206f64e5dc6c1768e438ed34 (patch) | |
tree | 60561453e1b2aeecac79c8859d6a0cd0568a9ce0 /fftools/ffmpeg.h | |
parent | 5bc644ea8a6a0f8d02df36a12c1ce09bda696a77 (diff) | |
download | ffmpeg-5c66ee6351ae3523206f64e5dc6c1768e438ed34.tar.gz |
fftools/ffmpeg: move freeing the output file to ffmpeg_mux.c
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 4425b7a874..ff8ebbfab5 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -690,6 +690,7 @@ int hwaccel_decode_init(AVCodecContext *avctx); /* open the muxer when all the streams are initialized */ int of_check_init(OutputFile *of); int of_write_trailer(OutputFile *of); +void of_close(OutputFile **pof); void of_write_packet(OutputFile *of, AVPacket *pkt, OutputStream *ost, int unqueue); |