summaryrefslogtreecommitdiff
path: root/libavformat/hlsenc.c
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2023-02-13 01:50:12 +0100
committerMarton Balint <cus@passwd.hu>2023-02-16 01:18:45 +0100
commit927042b409fc19a62085888b3a349d7e9e013b2e (patch)
treecea29731316882fce243bddbb7e30229d92c3895 /libavformat/hlsenc.c
parenteee6492df7a7dc6f70170eb6e8a14ae00d12afc8 (diff)
avformat: deprecate AVFormatContext io_close callback
io_close2 should be used instead. Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavformat/hlsenc.c')
-rw-r--r--libavformat/hlsenc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index dcc363b42e..e1f96feda3 100644
--- a/libavformat/hlsenc.c
+++ b/libavformat/hlsenc.c
@@ -869,7 +869,11 @@ static int hls_mux_init(AVFormatContext *s, VariantStream *vs)
oc->max_delay = s->max_delay;
oc->opaque = s->opaque;
oc->io_open = s->io_open;
+#if FF_API_AVFORMAT_IO_CLOSE
+FF_DISABLE_DEPRECATION_WARNINGS
oc->io_close = s->io_close;
+FF_ENABLE_DEPRECATION_WARNINGS
+#endif
oc->io_close2 = s->io_close2;
oc->strict_std_compliance = s->strict_std_compliance;
av_dict_copy(&oc->metadata, s->metadata, 0);