diff options
author | Anton Khirnov <anton@khirnov.net> | 2022-08-03 11:32:10 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-08-08 16:20:58 +0200 |
commit | 8e092c3eac399d457e470decffa1081251d00648 (patch) | |
tree | f94a867475f826836297c8c8756f5100213000c6 /fftools/ffmpeg.h | |
parent | 80e7feb48b99660754f4313bb12b216aeacebf4f (diff) | |
download | ffmpeg-8e092c3eac399d457e470decffa1081251d00648.tar.gz |
fftools/ffmpeg: remove OutputStream.encoding_needed
It is unnecessary, as it is always exactly equivalent to !!ost->enc_ctx
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 713de42e2b..69e4758a2d 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -464,7 +464,6 @@ typedef struct OutputStream { int index; /* stream index in the output file */ int source_index; /* InputStream index */ AVStream *st; /* stream in the output file */ - int encoding_needed; /* true if encoding needed for this stream */ /* number of frames emitted by the video-encoding sync code */ int64_t vsync_frame_number; /* input pts and corresponding output pts |