diff options
author | Anton Khirnov <anton@khirnov.net> | 2023-12-13 19:15:11 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-12-14 20:16:53 +0100 |
commit | 9afe3f527449ddef68ae526e52e2480eaa57cd3a (patch) | |
tree | 6eb6e49691d3e6d07de9b911a570d3a6fa4d575e /fftools/ffmpeg.h | |
parent | 4224895a87dc4bccaa210d3a554fd8acb7a28fed (diff) | |
download | ffmpeg-9afe3f527449ddef68ae526e52e2480eaa57cd3a.tar.gz |
fftools/ffmpeg: move InputStream.discard to private data
It is not used outside of ffmpeg_demux.
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 15e65021d7..4f7a386d41 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -344,7 +344,6 @@ typedef struct InputStream { int index; AVStream *st; - int discard; /* true if stream data should be discarded */ int user_set_discard; int decoding_needed; /* non zero if the packets must be decoded in 'raw_fifo', see DECODING_FOR_* */ #define DECODING_FOR_OST 1 |