From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.ffmpeg.org (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTPS id F2C414B6C0 for ; Thu, 21 Aug 2025 22:29:24 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTP id 4B6006800F9; Fri, 22 Aug 2025 01:29:21 +0300 (EEST) Received: from b0414b60bf0b (code.ffmpeg.org [188.245.149.3]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTPS id 103506801C5 for ; Fri, 22 Aug 2025 01:29:19 +0300 (EEST) MIME-Version: 1.0 To: ffmpeg-devel@ffmpeg.org Subject: [FFmpeg-devel] =?utf-8?q?=5BPATCH=5D_=5B8=2E0=5D_avformat/hlspro?= =?utf-8?q?to=3A_explicitly_deprecate_it_=28PR_=2320311=29?= X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Marvin Scholz via ffmpeg-devel Reply-To: FFmpeg development discussions and patches Cc: Marvin Scholz Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Message-Id: <20250821222921.4B6006800F9@ffbox0-bg.ffmpeg.org> Date: Fri, 22 Aug 2025 01:29:21 +0300 (EEST) Archived-At: List-Archive: List-Post: PR #20311 opened by Marvin Scholz (ePirat) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20311 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20311.patch This makes it more clear that it will be removed in a future release. >From a6c578ef6555fdb0af0789f8fc673f9188f4b0ec Mon Sep 17 00:00:00 2001 From: Marvin Scholz Date: Fri, 22 Aug 2025 00:28:33 +0200 Subject: [PATCH] avformat/hlsproto: explicitly deprecate it This makes it more clear that it will be removed in a future release. --- libavformat/hlsproto.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavformat/hlsproto.c b/libavformat/hlsproto.c index 02f695c1db..1c63a191cb 100644 --- a/libavformat/hlsproto.c +++ b/libavformat/hlsproto.c @@ -206,10 +206,10 @@ static int hls_open(URLContext *h, const char *uri, int flags) goto fail; } av_log(h, AV_LOG_WARNING, - "Using the hls protocol is discouraged, please try using the " - "hls demuxer instead. The hls demuxer should be more complete " - "and work as well as the protocol implementation. (If not, " - "please report it.) To use the demuxer, simply use %s as url.\n", + "Using the hls protocol is deprecated and it will be remove in " + "a future release, please use the hls demuxer instead. " + "If encountering issues with it, please report them. " + "To use the demuxer, simply use %s as url.\n", s->playlisturl); if ((ret = parse_playlist(h, s->playlisturl)) < 0) -- 2.49.1 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".