diff options
author | Anton Khirnov <[email protected]> | 2024-10-12 18:42:54 +0200 |
---|---|---|
committer | Anton Khirnov <[email protected]> | 2024-10-15 10:39:14 +0200 |
commit | 989bc256a370471d53ea5c3c9f0596ddf36f1b84 (patch) | |
tree | 6407ba8bed5dbb9c8739490996fb31efd3a3e3e1 | |
parent | c19f3fe61bd42f227316d2c227e6e0c1f064258f (diff) |
lavfi/vf_mergeplanes: remove redundant assignment
It is already done in init.
-rw-r--r-- | libavfilter/vf_mergeplanes.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/vf_mergeplanes.c b/libavfilter/vf_mergeplanes.c index 8c1537e0bc..9f7930d44b 100644 --- a/libavfilter/vf_mergeplanes.c +++ b/libavfilter/vf_mergeplanes.c @@ -127,7 +127,6 @@ static int query_formats(AVFilterContext *ctx) AVFilterFormats *formats = NULL; int i, ret; - s->outdesc = av_pix_fmt_desc_get(s->out_fmt); for (i = 0; av_pix_fmt_desc_get(i); i++) { const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(i); if (desc->comp[0].depth == s->outdesc->comp[0].depth && |