summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorPierre-Anthony Lemieux <pal@palemieux.com>2023-01-05 15:29:44 -0800
committerPierre-Anthony Lemieux <pal@palemieux.com>2023-02-21 19:38:53 -0800
commit15de355e627ec63422663df84681e78d075c9648 (patch)
treecd54736bb958b539b6e09b090e231bdfb8ebaba3 /libavformat
parent156ca865697fcad6332ea75f4d97f12135975ac5 (diff)
avformat/imfdec: remove the experimental flag
Signed-off-by: Pierre-Anthony Lemieux <pal@palemieux.com>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/imfdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/imfdec.c b/libavformat/imfdec.c
index 4932b7ff1f..7d04d0d853 100644
--- a/libavformat/imfdec.c
+++ b/libavformat/imfdec.c
@@ -1022,7 +1022,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 | AVFMT_NO_BYTE_SEEK,
+ .flags = AVFMT_NO_BYTE_SEEK,
.flags_internal = FF_FMT_INIT_CLEANUP,
.priv_class = &imf_class,
.priv_data_size = sizeof(IMFContext),