Re: [FFmpeg-devel] [PATCH] libavformat/utils.c: Fixed URL parsing

2020-02-15 Thread Marton Balint
On Thu, 13 Feb 2020, Gautam Ramakrishnan wrote: On Thu, Feb 13, 2020 at 12:31 AM Marton Balint wrote: On Wed, 12 Feb 2020, gautamr...@gmail.com wrote: > From: Gautam Ramakrishnan > > This commit fixes bug #8466 wherein URLs with query string > not preceeded by the '/' symbol in a URL wa

Re: [FFmpeg-devel] [PATCH] libavformat/utils.c: Fixed URL parsing

2020-02-12 Thread Gautam Ramakrishnan
On Thu, Feb 13, 2020 at 12:31 AM Marton Balint wrote: > > > > On Wed, 12 Feb 2020, gautamr...@gmail.com wrote: > > > From: Gautam Ramakrishnan > > > > This commit fixes bug #8466 wherein URLs with query string > > not preceeded by the '/' symbol in a URL was failing to get > > parsed. The av_url_

Re: [FFmpeg-devel] [PATCH] libavformat/utils.c: Fixed URL parsing

2020-02-12 Thread Marton Balint
On Wed, 12 Feb 2020, gautamr...@gmail.com wrote: From: Gautam Ramakrishnan This commit fixes bug #8466 wherein URLs with query string not preceeded by the '/' symbol in a URL was failing to get parsed. The av_url_split() function now checks if the path starts with a '/' and prepends it if it

Re: [FFmpeg-devel] [PATCH] libavformat/utils.c: Fixed URL parsing

2020-02-12 Thread Paul B Mahol
On 2/12/20, gautamr...@gmail.com wrote: > From: Gautam Ramakrishnan > > This commit fixes bug #8466 wherein URLs with query string > not preceeded by the '/' symbol in a URL was failing to get > parsed. The av_url_split() function now checks if the path > starts with a '/' and prepends it if it d

[FFmpeg-devel] [PATCH] libavformat/utils.c: Fixed URL parsing

2020-02-12 Thread gautamramk
From: Gautam Ramakrishnan This commit fixes bug #8466 wherein URLs with query string not preceeded by the '/' symbol in a URL was failing to get parsed. The av_url_split() function now checks if the path starts with a '/' and prepends it if it does not. --- libavformat/utils.c | 7 +++ 1 fil