From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 46C0C49EA5 for ; Tue, 12 Mar 2024 21:58:31 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id E01F968CDD9; Tue, 12 Mar 2024 23:58:28 +0200 (EET) Received: from iq.passwd.hu (iq.passwd.hu [217.27.212.140]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 0885F68AD2E for ; Tue, 12 Mar 2024 23:58:22 +0200 (EET) Received: from localhost (localhost [127.0.0.1]) by iq.passwd.hu (Postfix) with ESMTP id BF1A5E9AB0 for ; Tue, 12 Mar 2024 22:58:21 +0100 (CET) X-Virus-Scanned: amavisd-new at passwd.hu Received: from iq.passwd.hu ([127.0.0.1]) by localhost (iq.passwd.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id e_N52vWhMk4k for ; Tue, 12 Mar 2024 22:58:11 +0100 (CET) Received: from iq (iq [217.27.212.140]) by iq.passwd.hu (Postfix) with ESMTPS id 8B23CE99DC for ; Tue, 12 Mar 2024 22:58:11 +0100 (CET) Date: Tue, 12 Mar 2024 22:58:11 +0100 (CET) From: Marton Balint To: FFmpeg development discussions and patches In-Reply-To: Message-ID: <9a31ac79-ea4c-be98-6e73-ae4bdfbd7952@passwd.hu> References: MIME-Version: 1.0 Subject: Re: [FFmpeg-devel] [PATCH 1/1] avformat/gopher: Add audio and video itemtypes 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: , Reply-To: FFmpeg development discussions and patches Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: On Tue, 5 Mar 2024, Christian Lee Seibold wrote: > The 's', ';', and '<' itemtypes are used for audio and video by > Gophernicus and Gopher+. > > Signed-off-by: Christian Lee Seibold > --- > libavformat/gopher.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/libavformat/gopher.c b/libavformat/gopher.c > index 9497ffacf2..97ac9028a1 100644 > --- a/libavformat/gopher.c > +++ b/libavformat/gopher.c > @@ -49,6 +49,9 @@ static int gopher_connect(URLContext *h, const char *path) > if (!*path) return AVERROR(EINVAL); > switch (*++path) { > case '5': > + case 's': > + case '<': > + case ';': > case '9': > path = strchr(path, '/'); > if (!path) return AVERROR(EINVAL); Will apply. Thanks, Marton > -- > 2.41.0.windows.2 > > _______________________________________________ > 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". > _______________________________________________ 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".