diff options
author | Anton Khirnov <anton@khirnov.net> | 2023-07-06 17:09:59 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-07-11 19:28:18 +0200 |
commit | a3ab5bf80d9edf15465d0c1fea349bb3cc76b013 (patch) | |
tree | 583881cfaa9e3b1451a688ae1a5dae2559f90abf /fftools/ffmpeg.h | |
parent | c19aa9c28f89e77ae89fbc09bafec57005ac3533 (diff) | |
download | ffmpeg-a3ab5bf80d9edf15465d0c1fea349bb3cc76b013.tar.gz |
fftools/ffmpeg_filter: make OutputFile.width,height private
They are not used outside of the filtering code.
Diffstat (limited to 'fftools/ffmpeg.h')
-rw-r--r-- | fftools/ffmpeg.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h index b789233a08..79f3f35b3a 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -294,9 +294,6 @@ typedef struct OutputFilter { enum AVMediaType type; - /* desired output stream properties */ - int width, height; - // those are only set if no format is specified and the encoder gives us multiple options // They point directly to the relevant lists of the encoder. const int *formats; |