diff options
author | Nicolas George <george@nsup.org> | 2021-07-24 19:37:55 +0200 |
---|---|---|
committer | Nicolas George <george@nsup.org> | 2021-08-14 09:17:45 +0200 |
commit | 85a6404d7e6c759ddf71d6374812d7ff719728ec (patch) | |
tree | d1d6fc6eff506ac53c86431fdc9dd9cca6a0a0f5 /libavfilter/formats.h | |
parent | 86d3dd5627b5c8c179aa48c7e4834a69371a14e6 (diff) | |
download | ffmpeg-85a6404d7e6c759ddf71d6374812d7ff719728ec.tar.gz |
lavfi/formats: describe conversion in negotiation structure.
Diffstat (limited to 'libavfilter/formats.h')
-rw-r--r-- | libavfilter/formats.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/formats.h b/libavfilter/formats.h index 6c1eec05ea..ed513c265a 100644 --- a/libavfilter/formats.h +++ b/libavfilter/formats.h @@ -78,6 +78,8 @@ typedef struct AVFilterFormatMerger { typedef struct AVFilterNegotiation { unsigned nb; const AVFilterFormatsMerger *mergers; + const char *conversion_filter; + unsigned conversion_opts_offset; } AVFilterNegotiation; const AVFilterNegotiation *ff_filter_get_negotiation(AVFilterLink *link); |