diff options
author | James Almer <jamrial@gmail.com> | 2024-01-20 10:48:39 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2024-03-07 08:53:30 -0300 |
commit | d6799ee0e41dee35ebf9c664173aed8e3ab24141 (patch) | |
tree | cb1fc69b085144f84c26cb02e9ae6f9cebb628b8 /libavformat/hlsenc.c | |
parent | aaefe47913c01cf4126b5fd4f53a5e8ecceade4d (diff) | |
download | ffmpeg-d6799ee0e41dee35ebf9c664173aed8e3ab24141.tar.gz |
avformat: remove deprecated FF_API_AVFORMAT_IO_CLOSE
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/hlsenc.c')
-rw-r--r-- | libavformat/hlsenc.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index e560aa6a20..e5350323b1 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -865,11 +865,6 @@ 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); |