diff mbox series

[FFmpeg-devel,RFC/PATCH,2/2] lavf/imfdec: mark as experimental

Message ID 20220102174605.2438-2-anton@khirnov.net
State Accepted
Commit 70f318e6b6c1551dff4d8571b8158f9d1cf05827
Headers show
Series [FFmpeg-devel,RFC/PATCH,1/2] lavf: add a flag for experimental (de)muxers | expand

Checks

Context Check Description
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished
andriy/make_ppc success Make finished
andriy/make_fate_ppc fail Make fate failed

Commit Message

Anton Khirnov Jan. 2, 2022, 5:46 p.m. UTC
People have expressed concerns about its safety, so prevent it from
being auto-selected without explicit user indication.
---
 libavformat/imfdec.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

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),