there have been get http/https shutdown status in ffurl_shutdown. so unnecessary http/https shutdown status operate.
Signed-off-by: Steven Liu <l...@chinaffmpeg.org> --- libavformat/hlsenc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 7c37bc50b9..ad3800ecae 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -316,8 +316,7 @@ static int hlsenc_io_close(AVFormatContext *s, AVIOContext **pb, char *filename) URLContext *http_url_context = ffio_geturlcontext(*pb); av_assert0(http_url_context); avio_flush(*pb); - ffurl_shutdown(http_url_context, AVIO_FLAG_WRITE); - ret = ff_http_get_shutdown_status(http_url_context); + ret = ffurl_shutdown(http_url_context, AVIO_FLAG_WRITE); #endif } return ret; -- 2.25.0 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".