diff options
author | Anton Khirnov <anton@khirnov.net> | 2022-10-17 11:37:45 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-10-25 11:04:42 +0200 |
commit | 295848bacb120da0fbe74b7f98888c328ac8dd44 (patch) | |
tree | ed7bf1f8e7b788cd9cb6525c9f561d28ec9dfb98 /fftools/ffmpeg.h | |
parent | 09cd147dccc149ae17081d6016ccb79f1afcb592 (diff) | |
download | ffmpeg-295848bacb120da0fbe74b7f98888c328ac8dd44.tar.gz |
fftools/ffmpeg: move closing the input file into a separate function
For now this is just closing the format context and freeing InputFile,
but will contain more in the future.
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 ab8b9018ca..1fd29fb0db 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -758,6 +758,7 @@ AVChapter * const * of_get_chapters(OutputFile *of, unsigned int *nb_chapters); int ifile_open(OptionsContext *o, const char *filename); +void ifile_close(InputFile **f); /** * Get next input packet from the demuxer. |