diff options
author | Anton Khirnov <anton@khirnov.net> | 2022-08-03 14:08:44 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-08-08 16:20:58 +0200 |
commit | 7b6622705e552b1dd5284b743974b66abe04954b (patch) | |
tree | 92dc1a8fe1d2015071937a6357d141bdac761f8c /fftools/ffmpeg.h | |
parent | c3b8d59d2f40550369dbfb2505f2f8415f1e37ec (diff) | |
download | ffmpeg-7b6622705e552b1dd5284b743974b66abe04954b.tar.gz |
fftools/ffmpeg: move the input thread into its own file
It will contain more demuxing-specific code in the future.
Diffstat (limited to 'fftools/ffmpeg.h')
-rw-r--r-- | fftools/ffmpeg.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h index fc082bfbea..81356fd566 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -710,4 +710,9 @@ int64_t of_filesize(OutputFile *of); AVChapter * const * of_get_chapters(OutputFile *of, unsigned int *nb_chapters); +int init_input_threads(void); +int init_input_thread(int i); +void free_input_threads(void); +void free_input_thread(int i); + #endif /* FFTOOLS_FFMPEG_H */ |