diff options
author | Anton Khirnov <anton@khirnov.net> | 2022-10-17 12:49:51 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-10-25 11:04:42 +0200 |
commit | 5c1a096d02a4fce0799472425f60c8d1644fcdbd (patch) | |
tree | 46a0a285b1338cfe795aa46f7c8e0ce7a6f92366 /fftools/ffmpeg.h | |
parent | d8f7ce38da09e0b4c60620a12c796e7958372476 (diff) | |
download | ffmpeg-5c1a096d02a4fce0799472425f60c8d1644fcdbd.tar.gz |
fftools/ffmpeg: move nb_streams_warn from InputFile to Demuxer
It is private to the demuxer and do not need to be visible outside of
it.
Diffstat (limited to 'fftools/ffmpeg.h')
-rw-r--r-- | fftools/ffmpeg.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h index d914673abe..e5980ce9da 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -454,7 +454,6 @@ typedef struct InputFile { int64_t recording_time; int nb_streams; /* number of stream that ffmpeg is aware of; may be different from ctx.nb_streams if new streams appear during av_read_frame() */ - int nb_streams_warn; /* number of streams that the user was warned of */ int rate_emu; float readrate; int accurate_seek; |