fftools/ffmpeg_filter: make input filter configured parameters private

They are not used outside of ffmpeg_filter.
This commit is contained in:
Anton Khirnov
2023-05-13 10:05:02 +02:00
parent 82c75ddfad
commit 89b37ae70a
2 changed files with 50 additions and 48 deletions

View File

@@ -283,15 +283,6 @@ typedef struct InputFilter {
struct FilterGraph *graph;
uint8_t *name;
enum AVMediaType type; // AVMEDIA_TYPE_SUBTITLE for sub2video
// parameters configured for this input
int format;
int width, height;
AVRational sample_aspect_ratio;
int sample_rate;
AVChannelLayout ch_layout;
} InputFilter;
typedef struct OutputFilter {