diff options
author | Marvin Scholz <epirat07@gmail.com> | 2022-09-28 12:21:00 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-10-13 10:19:13 +0200 |
commit | 3ce161610647e034e7d42caeb192ae0653bdffe6 (patch) | |
tree | aa743b93f6882d6b4ee17201d12fb45726e7abc6 /fftools/ffmpeg.h | |
parent | 96a83ceea434911d825223eaafa0f999e2a9d1fa (diff) | |
download | ffmpeg-3ce161610647e034e7d42caeb192ae0653bdffe6.tar.gz |
ffmpeg: Make find_stream_info behave like a normal per-file option
Currently it would essentially change the find_stream_info setting for
the file it was specified for and all following files, which is unusual
and somewhat unexpected behaviour for a per-file option and not even
documented to behave like this.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
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 8460391afa..9c908e7465 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -126,6 +126,7 @@ typedef struct OptionsContext { int accurate_seek; int thread_queue_size; int input_sync_ref; + int find_stream_info; SpecifierOpt *ts_scale; int nb_ts_scale; |