diff options
author | Anton Khirnov <anton@khirnov.net> | 2022-01-02 18:40:09 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-01-03 20:38:35 +0100 |
commit | 70f318e6b6c1551dff4d8571b8158f9d1cf05827 (patch) | |
tree | fb297a8afbb940ee02a13c28cd112437c7a931f8 /libavformat/imfdec.c | |
parent | be97d2a825a12c9c01a61b985d44eb7424628fd6 (diff) | |
download | ffmpeg-70f318e6b6c1551dff4d8571b8158f9d1cf05827.tar.gz |
lavf/imfdec: mark as experimental
People have expressed concerns about its safety, so prevent it from
being auto-selected without explicit user indication.
Diffstat (limited to 'libavformat/imfdec.c')
-rw-r--r-- | libavformat/imfdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/imfdec.c b/libavformat/imfdec.c index f17064cfcd..228ba494ae 100644 --- a/libavformat/imfdec.c +++ b/libavformat/imfdec.c @@ -889,6 +889,7 @@ static const AVClass imf_class = { const AVInputFormat ff_imf_demuxer = { .name = "imf", .long_name = NULL_IF_CONFIG_SMALL("IMF (Interoperable Master Format)"), + .flags = AVFMT_EXPERIMENTAL, .flags_internal = FF_FMT_INIT_CLEANUP, .priv_class = &imf_class, .priv_data_size = sizeof(IMFContext), |